Recherche avancée

Médias (0)

Mot : - Tags -/organisation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (51)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette 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.

Sur d’autres sites (9784)

  • how to determine the average biterate and peak bitrate of a video using ffmpeg ?

    14 février 2018, par loki

    I 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 capture, mkvtimestamp_v2 and timecode don't play nice

    24 mai 2021, par Bouke

    Trying to capture and modify the TC in-file afterwards.&#xA;I've found a nice way to store the timestamps from the capture.&#xA;Gyan's brillant filterchain

    &#xA;

    This works fine using this line :

    &#xA;

    ffmpeg -hide_banner -f "decklink" -queue_size "1073741824" -raw_format "auto" -format_code "Hi50" -video_input "sdi" -i "bm mini One" -filter_complex "settb=1/1000,setpts=RTCTIME/1000-1500000000000,mpdecimate,split[out][ts];[out]setpts=N/25/TB[out]" -map "[out]" -c:a "copy" -c:v "prores" -profile:v "1" -vendor "ap10" -pix_fmt "yuv422p10le" "/Volumes/Data/tst1.mov" -map "[ts]" -f mkvtimestamp_v2 "/Volumes/Data/time.txt" -vsync 0&#xA;

    &#xA;

    But, when I add -timecode "00:00:00:00" (to force a TC atom in the output), horrible things happen.

    &#xA;

    ffmpeg -f "decklink" -queue_size "1073741824" -raw_format "auto" -format_code "Hi50" -video_input "sdi" -i "bm mini One" -filter_complex "settb=1/1000,setpts=RTCTIME/1000-1500000000000,mpdecimate,split[out][ts];[out]setpts=N/25/TB[out]" -map "[out]" -timecode "00:01:00:00" -c:a "copy" -c:v "prores" -profile:v "1" -vendor "ap10" -pix_fmt "yuv422p10le" "/Volumes/Data/tst1.mov" -map "[ts]" -f mkvtimestamp_v2 "/Volumes/Data/time.txt" -vsync 0&#xA;

    &#xA;

    The timecode does not run at the video speed, skips a frame or two here and there, and the image freezes after a random amount of time (between 10 seconds and a minute or so).

    &#xA;

    How come the timecode can mess up stuff that much ? From what I understand it's just a couple of atoms in the moov atom, and a reference where the actual TC value (as frames) is stored in the mdat.

    &#xA;

    I highly suspect the -vsync 0 to also work on the video, and I've had issues with that before. If I omit that, the video is fine, the TC is fine, but there is no metadata output, just the # timecode format v2

    &#xA;

  • Video converted using ffmpeg is blank after conversion

    28 août 2023, par Big boy

    I want to convert video types to MP4 and reduce their sizes (similar to WebP and other image formats).

    &#xA;

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

    &#xA;

    Then I used this command based on this answer :

    &#xA;

    &#xA;

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

    &#xA;

    &#xA;

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

    &#xA;

    What do I miss here ?

    &#xA;