
Recherche avancée
Médias (3)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (111)
-
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (14937)
-
avformat/asfdec : Use a parser for mpeg4-asp to find has_b_frames
3 juin 2014, par Michael Niedermayer -
Combining two ffmpeg commands into one command [closed]
19 janvier 2024, par Tuan LeI want to combine two ffmpeg commands to single ffmpeg command (1. combine multiple photos into a video ; 2. add music to the newly created video)


1

ffmpeg -r 0.1 -s 1080x1620 -i pictures/%03d.jpeg -vcodec libx264 -crf 25 video1.mp4


2

ffmpeg -i video1.mp4 -stream_loop -1 -i audio2.mp3 -map 0:v -map 1:a -c copy -shortest output.mp4


(Actually I have very little knowledge of ffmpeg so please excuse my foolishness)
Please help me with my issue


-
ffmpeg : gif to mp4 - combining commands
3 novembre 2022, par Paul BrowneI'm converting a gif ( recorded at 1 frame per second) to an mp4 using these 3 commands :


ffmpeg -i input.gif -movflags faststart -pix_fmt yuv420p -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2,fps=10" temp.mp4
ffmpeg -i temp.mp4 -map 0:v -c:v copy -bsf:v h264_mp4toannexb raw.h264
ffmpeg -fflags +genpts -r 200 -i raw.h264 -c:v copy output.mp4



- 

- 1st command converts gif to mp4 and increases fps to 10
- 2nd command converts mp4 to raw.h264
- 3rd command converts raw.h264 back to mp4 and increases the fps








Is there a way to combine some of these commands... So take the gif @1fps and output mp4 at 60fps ?