
Recherche avancée
Autres articles (61)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (13311)
-
FFMPEG : Converting WAV to MP4 with filter loops forever
30 juin 2021, par David FerrisI'm using the following basic
ffmpeg
commend to convert a WAV file to an MP4.

ffmpeg -i response.wav -s 1980x1080 -c:a aac -b:a 128k aNewVideo.mp4


This is great, however I'd like to include a black background on the mp4 file, and as it stands this doesn't add ANY background (see below).




I have tried to include the following filter to add this background, which works, however it loops forever, and when I stop it manually I get a file which is hours long with the first 20 seconds or so being my original audio.


ffmpeg -f lavfi -i color=c=black:s=1280x720:r=5 -i response.wav -s 1980x1080 -c:a aac -b:a 128k aNewVideo.mp4


How can I add this black background without running into this infinite loop problem ?


-
Revision f60a1178c6 : Cleanup motion search speed features. * Replace max_step_search_steps with cons
1er juillet 2014, par Alex ConverseChanged Paths :
Modify /vp9/encoder/vp9_mbgraph.c
Modify /vp9/encoder/vp9_mcomp.c
Modify /vp9/encoder/vp9_speed_features.c
Modify /vp9/encoder/vp9_speed_features.h
Modify /vp9/encoder/vp9_temporal_filter.c
Cleanup motion search speed features.* Replace max_step_search_steps with constant MAX_MVSEARCH_STEPS
* Fold (reduce_first_step_size + speed > 5) into reduce_first_step_size
replacing uses of reduce_first_step_size that don’t add the speed
check with zero.Change-Id : Iae46395dbf3eaca138bf4d18b838a9e364b5a198
-
Building FFMPEGINTEROP with Visual Studio 2017 ?
25 septembre 2018, par Francois GagnonI’m working on a project that requires a video player. I’ve been using the standard UWP MediaPlayerElement but it refuses to read many types of videos, including ASF and FLV and some older MPG.
I’ve read that ffmpeginterop is more compatible with a variety of codecs. However building it is a finicky and all the instructions are designed for VS2015 and command prompt for ARM processor, which does not exist for VS2017. I can’t find an updated version of the instructions (Left a message on their GIT site as well... no answers).
So my question is two-fold :
-
Is there any way to download the missing/updated codecs to include them in my project that uses the standard UWP approach ?
-
Is there an updated way/tutorial/instructions of building ffmpeginterop with VS2017 ?
-
Is ffmpeginterop too old and I should not build using it going forward ?
Thanks !
-