Tagged Questions
1
vote
2answers
59 views
django - why is this not working?
i have this image field in my model
foto = models.ImageField(upload_to="user/%Y/%m/%d",default='')
and in my settings:
MEDIA_ROOT = os.path.join(PROJECT_PATH, "media")
MEDIA_URL = "/media/"
and ...
0
votes
1answer
50 views
Django: Is possible to execute javascript or jquery directly from Media subclass?
i have just a small django form which requires at creation time an execution of an equally small jquery code (just half of a line) and i was wondering if i can give this code of one line inside ...
0
votes
0answers
60 views
Downloading the files(which are uploaded) from media folder in django 1.4.3
I am using django to design the basic web pages that handles the uploading and downloading of the files to/from the media folder
Actually the files are uploaded successfully in to the media folder, ...
0
votes
1answer
144 views
Download the files from media in django 1.4.3
I am using django to design two basic pages,in which one page is used to upload the files to media, and another page that lists all the uploaded files in the media folder and a link to download those ...
1
vote
1answer
60 views
Displaying image source from MEDIA_ROOT
I have my media_root path set to
MEDIA_ROOT = os.path.join(os.path.dirname(__file__), 'media')
MEDIA_URL = 'media/'
with my project structured as so
Project_Name/
media/
profiles/
...
3
votes
1answer
97 views
How to get a song to play automatically in WxPython MediaCtrl?
I am making a music player and everything goes well except when I click the next button, it loads the next song, but wont play it unless the user presses the play button. Is there anyway to make this ...
1
vote
1answer
116 views
Django - serving user uploaded images
I am having some problems with serving user uploaded files from my Django application:
from models.py:
class Picture (models.Model):
title = models.CharField(max_length=48)
date_added = ...
0
votes
1answer
49 views
how to access media_root in py file
settings.py
MEDIA_URL = '/media/'
MEDIA_ROOT = '/Users/blah/djangoproj/abc/abc/media/static/'
In random.py file,
how do I access files within MEDIA_ROOT? How should I add media_root to urls.py?
0
votes
1answer
54 views
js and css files are not read in a DJANGO project
I am reformulating a previous question because I think it was formulated as a Python problem but it is a Django one.
I am installing a project from github called publicmarkup:
The main page ...
0
votes
0answers
77 views
loading media issue - django
I am installing a python project from github : https://github.com/sunlightlabs/publicmarkup
The main page displays on the browser but no media (neither js files, nor css files) are read loaded.
I ...
0
votes
1answer
257 views
Verify mediafiles with libVLC and Python
I'm trying to find out wether a mediafile "could" be played back in VLC using LibVLC-Python.
In my python script I parse recursively through a directory (containing media and non-media-files as well ...
5
votes
1answer
338 views
Windows (XP to Windows 7) audio playback with python?
Anyone have experience playing audio (right now specifically mp3s) with python using a any libs?
Details:
Use is in a wxPython app (yes I have tried wx.media.MediaCtrl)
Ok now is here things I have ...
0
votes
3answers
704 views
django media not loading
So using django for the first time and ran into this issue where the media url does not want to load/work so far my urls.py is setup like so
if settings.DEBUG:
urlpatterns += patterns('',
...
2
votes
0answers
108 views
Matching list of files (for a tv show) with episodes for that show
I would like to implement or find a library implementing a feature similar to that in Plex where it matches video files for a show to actual episodes for that show. What I have found so far:
Plex's ...
0
votes
2answers
634 views
Convert mp4 to .wav or mp3 with python
Does anybody have experience with converting mp4 files to .wav or mp3 files? I am able to do this in Linux (bash), but I try to do everything in Python that I do in other languages, call me an ...
2
votes
2answers
215 views
Retrieving media (images, videos etc.) from links in Perl
Similar to Reddit's r/pic sub-reddit, I want to aggregate media from various sources. Some sites use OEmbed specs to expose media on the page but not all sites do it. I was browsing through Reddit's ...
2
votes
3answers
116 views
Multiplatform, multi-filetype music playing in Python
I am looking for a Python module that can play a variety of music filetypes (especially MP3, AAC, WAV, and OGG) on Windows, Mac OS, and Linux. This is surprisingly hard to find. I've tried the Python ...
0
votes
3answers
341 views
A very simple lightweight video editor
I want to make an editor that does the following:
1) takes an mp3 audio file
2) Takes a picture --a jpg file
3) Outputs a simple video format e.g. .mov which consists of the jpg file with the mp3 ...
1
vote
2answers
101 views
Django - Include a media into a specific admin page
If I have this kind of modelAdmin:
admin.py
#...
class ScribPartAdmin(admin.ModelAdmin):
class Media:
css = {
'all': ('css/mymarkup.css',)
}
admin.site.register(ScribPart, ...
0
votes
1answer
346 views
Django - ModelAdmin media definition
I'm trying to include some CSS and JS files into the change form of an object like specified in the doc. Here are me files:
admin.py
#...
class ScribPartAdmin(admin.ModelAdmin):
class Media:
...
1
vote
1answer
283 views
Media content working
So I'm trying to make a portfolio and trying to just test things locally but it's NOT using my media content.. I've really tried LOTS of stuff.. and I'm out of ideas.
The HTML generated is correct, ...
0
votes
3answers
239 views
python How to detect a new piece of media in the CD?
I have a need to copy a group of files. Unfortunately these files will span multiple DVDs. What I want to do is
a) copy the files of the current DVD
b) when complete, eject the media and prompt ...
0
votes
1answer
2k views
Is there an alternative to PyMedia
Is there an alternative to PyMedia to decode different video formats and be able to extract frames as images for further processing?
Currently I have to be able to do something like the following ...
0
votes
1answer
157 views
Python - Django documentation says this is an insecure way of serving static files - is it true, and if yes, how so?
I follow this way of delivering static files but according to the disclaimer at the top, it's both insecure and inefficient. Is it true? How should I be doing it instead?
Also, a semi-off-topic ...
3
votes
1answer
325 views
Detect Window's Default Media Player
I'm trying to detect Window's default media player path so that I can access it from my Python/wxPython program. My specific need is to make a list of all media files and play it using the player.
2
votes
2answers
90 views
Django: correct way to group a bunch of media's
I send several forms to a template, and I want to put all required media in the <head> tag. Some forms might require the same media (for instance, the same JS file), so I would like to unify all ...
9
votes
3answers
1k views
Detecting Similar images [duplicate]
Possible Duplicate:
Image comparison algorithm
So basically i need to write a program that checks whether 2 images are the same or not. Consider the following 2 images:
...
0
votes
1answer
778 views
Python/Tkinter Audio Player
Hey everyone reading this,
I've recently got into doing GUI development with Python. Tkinter seems like the easiest and most logical choice starting out. I did a little with wxPython but it was more ...
12
votes
2answers
2k views
How do I find the length of media with gstreamer?
How do I find the playback time of media with gstreamer?
0
votes
3answers
157 views
Python CDROM Production
I have been using Macromedia / Adobe Director & Lingo since 1998. I am extremely familiar with using this software to create CDROMs and DVDs and also have a good knowledge of design elements and ...
0
votes
2answers
246 views
How to use Django templatetags in static media files?
Im using a flash gallery and the settings xml file is stored in /media/xml/gallery.xml
In the gallery.xml file I want to add this snippet of code:
<items>
{% for image in images %}
...
0
votes
1answer
532 views
django, runserver_plus - admin media files served from wrong path
The configuration below works fine on my remote host (same dir structure, same django), all admin media are served properly
settings
MEDIA_ROOT = '%s/static/' % FS_ROOT
STATIC_DOC_ROOT = ...
1
vote
1answer
18 views
media.set_xx ValueError
New guy here. I asked a while back about a sprite recolouring program that I was having difficulty with and got some great responses. Basically, I tried to write a program that would recolour pixels ...
14
votes
2answers
3k views
Django upload_to outside of MEDIA_ROOT
My deployment script overwrites the media and source directories which means I have to move the uploads directory out of the media directory, and replace it after the upload has been extracted.
How ...
7
votes
2answers
6k views
Play mp3 using Python, PyQt, and Phonon
I been trying all day to figure out the Qt's Phonon library with Python.
My long term goal is to see if I could get it to play a mms:// stream, but since I can't find an implementation of this done ...
37
votes
7answers
27k views
Django: how do you serve media / stylesheets and link to them within templates
Variations of this question have been asked, but I'm still unable to get my stylesheets to load correctly when my templates are rendered.
I'm attempting to serve static media from the Django process ...
6
votes
6answers
11k views
time length of an mp3 file
What is the simplest way to determine the length (in seconds) of a given mp3 file, without using outside libraries? (python source highly appreciated)