
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (35)
-
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 (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...) -
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 (4030)
-
Video converted using ffmpeg is blank after conversion
28 août 2023, par Big boyI want to convert video types to MP4 and reduce their sizes (similar to WebP and other image formats).


I downloaded a small sample from this site (the first one which is 1.5M).


Then I used this command based on this answer :




ffmpeg -i /Downloads/video.mp4 -c:v libx265 -vtag hvc1 -c:a copy /Downloads/video-result.mp4




But after conversion, when I open it in the Google Chrome, it shows nothing. It's blank. While the original video works just fine.


What do I miss here ?


-
how to determine the average biterate and peak bitrate of a video using ffmpeg ?
14 février 2018, par lokiI don’t understand, when in ffmpeg i do
ffmpeg -i <input />
i have :Video : hevc (Main) (hev1 / 0x31766568), yuv420p(tv), 1920x1080, 4997 kb/s, 30 fps, 30 tbr, 998795.00 tbn, 30 tbc (default)
it’s show bitrate : 4997 kb/s BUT the size of the file is 114915563 bytes for a duration of 179 secondes. when i do math i have 114915563 / 179 = 641986 bytes/s = 642 kb/s :(
What did i miss ? how to retrieve the average bitrate of a movie and the peak bitrate of a movie ?
-
ffmpeg : setting framerate changes also length
21 février 2020, par planetmakerI’m creating videos from images sequences and I’d like to set the desired framerate of the resulting video file by the
-r FPS
flag with commands likeffmpeg -i %05d.bmp -r 30 -c:v h264 -vframes 780 -qscale:v 0 output.mp4
However it seems that it does make a difference whether I set -r 30 or -r 60 in as much that the video ends earlier (thus less than specified 780 input images are used) the higher I set the framerate.
The folder contains thousands of sequential images which follow the specified scheme %05d.bmp and I only need the first fixed-length part of this sequence - but at a higher frame rate than the default rate of 30fps.
What part do I miss when trying to use the frame rate ? How do I set the FPS to a higher value but retaining the input length ?