
Recherche avancée
Autres articles (96)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
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
Sur d’autres sites (13665)
-
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