
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (45)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
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 (...)
Sur d’autres sites (4044)
-
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 ?