
Recherche avancée
Autres articles (64)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
MediaSPIP Player : les contrôles
26 mai 2010, parLes contrôles à la souris du lecteur
En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)
Sur d’autres sites (5972)
-
converting mp4 to mp3 using ffmpeg failing
26 décembre 2014, par LiveEnim trying to convert a mp4 file into a mp3 using ffmpeg on my linux vps
Currently i have installed ffmpeg to my server and im my php code i have the below
$saved = 'videos/move1.mp4';
$out = 'videos/move1.mp3';
$ffmpeg = "ffmpeg -i ".$saved." -ar 44100 -ab 128k -ac 2 ".$out."";
$cmd = exec($ffmpeg);
if($cmd)
{
echo "success";
}
else
{
echo "failed";
}It always returns failed. can someone tell me what am i doing wrong ?
-
Overlaying 2 videos using FFMPEG in Android Giving Low Resolution Video Output
7 janvier 2021, par mirza aliI'm overlaying 2 videos using below command
This command works perfectly but returns Low resolution Video output any change to this command which make my video resolution better ...!!?


"-i", FirstVideo, "-f","lavfi","-i","movie=" + SeconedVideo+ 
 
":loop=200,setpts=N/FRAME_RATE/TB","-filter_complex", 
 
"[1:v][0:v]scale2ref[ua][b];[ua]setsar=1,format=yuva444p,colorchannelmixer=aa=1[u];[b][u]overlay=1:1:shortest=1", OutputFilePath



-
Grabbing rtsp/rtp stream with libavformat
19 janvier 2012, par T0haworld.
I'm trying to grab rtsp mjpeg stream from IP-camera (realtime) as described in http://www.inb.uni-luebeck.de/ boehme/using_libavcodec.html, but ported to newer version.
It works well with mpeg file (loading it full as one AVPacket), but working with stream, avcodec_decode_video2 returns -1 (error). AVPacket in this case is a part of a frame.How can I fix this ?