
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 (95)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Participer à sa documentation
10 avril 2011La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
Pour ce faire, vous pouvez vous inscrire sur (...)
Sur d’autres sites (7882)
-
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’) -
how to modify movie filter in ffmpeg using zmq
14 juin 2016, par ramon1604So far, we can modify overlay, scale and others but we do not find the proper syntax to modify movie filter in ffmpeg. We are using perl to send zmq command to ffmpeg and it returns 0 success when command is properly received. Please help. thanks