
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (80)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)
Sur d’autres sites (4306)
-
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.