
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (37)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (7577)
-
conversion from mp3 to ogg using php
9 janvier 2014, par PreethyI want to convert mp3 file to ogg. I tried the following code
exec("/usr/local/bin/ffmpeg -i 1.mp4 -vcodec libtheora -acodec libvorbis testjohn4545454.ogg",$output);
var_dump($output);But it does not convert the file and it only returns
array(0) { }
and it only takes a little execution time.But the conversion is success when using ssh command.
Please give me solution.
-
Extract WAV audio file from video after uploading on web, using FFMPEG in django
26 mars 2019, par maryam mehboobProblem
I am trying to find a way to extract an audio wav file from a mp4 video file that is uploaded by a web user using
ffmpeg
using Django.If I will find to extract audio, then where should I save it in my project ?
- I tried it with "Django-ffmpeg", but didn’t convert and was stuck in ’pending conversion’ message.
-
Then I tried with :
import subprocess
subprocess.call('ffmpeg -i filename.mp4 filename.wav')
Error
Script
def validate_file_extension(value) :
import os
from django.core.exceptions import ValidationError
ext = os.path.splitext(value.name)1 # [0] returns path+filename
filename = os.path.splitext(value.name)1 # [0] returns path+filename
valid_extensions = [’.mp4’]
if not ext.lower() in valid_extensions :
raise ValidationError(u’Unsupported file extension.’)
else :
import subprocess
subprocess.call(’ffmpeg -i filename.mp4 filename.wav’) -
Revision a4e85a5f4f : Implementing right flushing for simple_encoder. simple_encoder : Flush encoder.
11 août 2014, par Dmitry KovalevChanged Paths :
Modify /examples/simple_encoder.c
Implementing right flushing for simple_encoder.simple_encoder : Flush encoder. According to the current API spec we need
to call vpx_codec_encode() until vpx_codec_get_cx_data() returns NULL.Change-Id : Ibc37706e5257a3d51e5421ca17f77ab41249d9b5