
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (84)
-
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 à (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (...)
Sur d’autres sites (9582)
-
Speed up and reverse a video with a single command ?
4 août 2016, par Eduardo PerezI am using Ubuntu 16.04. I know with FFMPEG you can use this command to reverse a video.
ffmpeg -i [input] -vf reverse -af areverse [output]
Now, the thing is I found somewhere that you can use this command to speed up the video.
ffmpeg -i [input] -filter_complex "[0:v]setpts=2.0*PTS[v];[0:a]atempo=0.5[a]" -map "[v]" -map "[a]" [output]
So, I tried this command to speed up and reverse the video, but it didn’t work since complex filters can’t be used together with -vf or -af.
ffmpeg -i [input] -filter_complex "[0:v]setpts=2.0*PTS[v];[0:a]atempo=0.5[a]" -map "[v]" -map "[a]" -vf reverse -af areverse [output]
What command do I need to use to get FFmpeg to speed up and reverse the video, without decompiling it ? I’m using the latest version of FFmpeg.
-
How to profile compression speed for a h264 encoder
25 mai 2018, par DeanI’m using nvenc to compress in h264 a video stream. I now have a kinda-working low latency implementation for game streaming purposes but I’m struggling to get reliable profiling results. I’ve been trying to stream a video (so everything is predetermined) via my encoder to the clients in controlled network conditions (e.g. locally). I tried to time average compression times per frame but they’re highly volatile and the numbers I get aren’t that meaningful.
How are low latency streaming encoders tested for performances ?
-
How to change video speed using fluent-ffmpeg (PTS ?)
13 mai 2018, par conley wangthere are so many commands about how to change video speed using ffmped command, but i don’t know how to use fluent-ffmpeg to achieve the same command, maybe using filter ? can anyone tell me ?
ffmpeg -i TheOrigin.mp4 -vf "setpts=0.25*PTS" UpTheOrigin.mp4