
Recherche avancée
Autres articles (44)
-
Utilisation et configuration du script
19 janvier 2011, parInformations spécifiques à la distribution Debian
Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
Récupération du script
Le script d’installation peut être récupéré de deux manières différentes.
Via svn en utilisant la commande pour récupérer le code source à jour :
svn co (...) -
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 (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)
Sur d’autres sites (5192)
-
ffmpeg not creating video from images
16 décembre 2014, par Knight RiderI have read this Create Video using ffmpeg
Still I am not able to get it.
I have written this shell command in PHPecho $make_movie = "$ffmpeg -framerate 1/5 -i $folder_name/img%03d.png -c:v libx264 -r 25 -pix_fmt yuv420p $folder_name/output.mp4";
This gives output
ffmpeg\bin\ffmpeg.exe -framerate 1/5 -i ankit/img%03d.png -c:v libx264 -r 25 -pix_fmt yuv420p ankit/output.mp4
if(shell_exec($make_movie)){
echo "<br />Movie Created..<br />";
}
else{
echo "<br />Movie Creation Error..<br />";
}The Output is Movie Creation Error that means the Shell Command is not executing ?
Questions :
- What is wrong ?
- For future use, any debugging methods for this ?
I ran the same command on cmd and it made the video..!!!
-
ffmpeg merge 2 videos missing audio
30 janvier 2016, par LiaoI followed the wiki
$ffmpeg_bin -i part1_1.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate1.ts
$ffmpeg_bin -i part1_2.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate2.ts
$ffmpeg_bin -i "concat:intermediate1.ts|intermediate2.ts" -c copy -bsf:a aac_adtstoasc result.mp4the origin part1_1.mp4 has no audio, part1_2.mp4 does
But the result.mp4 has no audio.
When I change part1_1.mp4 to a video which has audio, then result.mp4 got audio
Why ?
-
FFmpeg. How to set image preview metadata to .mp4 and mux subtitles [closed]
15 mars 2013, par user2172066I found this guide which explains how metadata to any video file using FFmpeg free-form command line :
http://wiki.multimedia.cx/index.php?title=FFmpeg_Metadata#QuickTime.2FMOV.2FMP4.2FM4A.2Fet_al.however i want to add subtitles and an image preview to movies (.mp4) files. anybody know how to get this done ?
thanks.