
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (76)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)
Sur d’autres sites (4940)
-
How can I include all ts files ffmpeg generates in the m3u8 playlist ?
14 février 2015, par PobreI have the latest ffmpeg version 2.5 and I am trying to convert a mp4 file into HLS files. From what I understand ffmpeg can generate ts and m3u8 playlist. When ffmpeg finishes, the playlist just contains last few ts files generated. It appears it’s being overwritten. What parameters must I pass to ffmpeg to generate a complete m3u8 list of all the ts files ?
final m3u8 generated :
#EXTM3U
#EXT-X-VERSION:3
#EXT-X-TARGETDURATION:9
#EXT-X-MEDIA-SEQUENCE:50
#EXTINF:9.000000,
480x27050.ts
#EXTINF:9.000000,
480x27051.ts
#EXTINF:9.000000,
480x27052.ts
#EXTINF:9.000000,
480x27053.ts
#EXTINF:0.466667,
480x27054.ts
#EXT-X-ENDLISTffmpeg arguments :
ffmpeg -i test_2.mp4 -c:a aac -strict experimental -ac 2 -ar 48k -ab 64k -c:v libx264 -s 480x270 -aspect 16:9 -b:v 400k -r 15 -g 45 -profile:v baseline -level 3.0 -f hls -hls_time 9 480x270.m3u8
-
FFMPEG : high quality animated gif ?
5 mai 2017, par David HopeI’m generating animated gif from a video on my server.
The generated animated gif is not really high quality and it looks like the pixels are huge.
Example :
This is how I generate the gif :
shell_exec("/usr/bin/ffmpeg -i video.mkv -vf scale=500:-1 -t 10 -r 10 image.gif");
I did a search on google and came across this code :
shell_exec("/usr/bin/ffmpeg -i video.mkv -r 20 -f image2pipe -vcodec ppm - | convert -delay 5 - output.gif");
But the code above doesn’t do anything and no output.gif is being generated at all.
Could someone please let me know if there is a clear way to generate a high
quality gif using ffmpeg
?There are some tutorials that I came across but none of them worked for me and some of them involves using imagemagic which i dont have access to.
-
Node-Fluent-ffmpeg stops with Error initializing complex filters. Invalid argument
28 août 2020, par V.PanichkinI use node-fluent-ffmpeg to generate ffmpeg command. I created a node.js app, but it throws an exception :


Error: ffmpeg exited with code 1: Error initializing complex filters.
Invalid argument

 at ChildProcess.<anonymous> (/home/victor/Documents/work/recorder_ws/node_modules/fluent-ffmpeg/lib/processor.js:182:22)
 at ChildProcess.emit (events.js:315:20)
 at Process.ChildProcess._handle.onexit (internal/child_process.js:275:12)
</anonymous>


The command that was generated by Node-Fluent-Ffmpeg is


ffmpeg -i /home/user/videos/1.webm -i /home/user/videos/3.webm -i /home/user/videos/4.webm -i /home/user/videos/5.webm -y -filter_complex "[0:v] scale=qvga [a0];[1:v] scale=qvga [a1];[2:v] scale=qvga [a2];[3:v] scale=qvga [a3];[a0][a1][a2][a3]xstack=inputs=4:layout=0_0|w0_0|0_h0|w0_h0[out]" -map "[out]" -c:v libx264 -t '30' ./server-generated.mkv



I checked it several times and didn't find any problem. Afterwards, I run this generated command directly in the console and it works fine.


Could someone tell me why node-fluent-ffmpeg cannot run this command with a valid ffmpeg command and throws invalid argument exception ?