Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (47)

  • Participer à sa traduction

    10 avril 2011

    Vous 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 (...)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

Sur d’autres sites (9237)

  • FFmpeg add #EXT-X-START to HLS m3u8 file

    25 octobre 2017, par bosboy

    I am creating a HLS live streaming event playlist (m3u8 file and the ts segments) via FFmpeg. The segments at the beginning must not be removed from the playlist (it should contain all the segments). The HTML5 video element should start playing the video at the very beginning (by default it starts somewhere in the middle if the playlist contains several segments and the end tag is not contained at the end of the playlist file). To achieve that the video starts playing at the very beginning I need to add #EXT-X-START:TIME-OFFSET=0 to the playlist file.

    Currently my FFmpeg command is the following :
    ffmpeg -i videoSrc -map 0 -f hls -hls_time 10 -hls_list_size 0 -hls_playlist_type event -hls_allow_cache 0 -hls_segment_filename testSegmented%03d.ts testSegmentedHls.m3u8.

    So my question is : How do I add #EXT-X-START:TIME-OFFSET=0 to my HLS m3u8 playlist file using FFmpeg ?

  • FFMPEG bat file won't run [closed]

    8 octobre 2023, par Tiecubed
    @echo off
setlocal enableextensions enabledelayedexpansion

set "input_directory=C:\Users\tiecu\OneDrive\Desktop\testing environment\Pending"
set "output_directory=C:\Users\tiecu\OneDrive\Desktop\testing environment\Output"

for %%i in ("%input_directory%.mp4") do (
    set "input_file=%%i"
    set "output_file=!output_directory!%%~nxi"

    C:\ffmpeg\ffmpeg.exe -i "!input_file!" -map_metadata -1 -vf "rotate=2PI/180, vignette=1.1, scale=1200:-1,setsar=1,crop=1080:1920,setpts=PTS/1.1" -af "atempo=1.1" -c:v libx264 -crf 18 -c:a aac -strict experimental "!output_file!"
)


    


    I have tried many bat scripts, all of them work except ffmpeg ones. The terminal opens and immediately closes. I have tried many scripts. ffmpeg works fine via cmd without a batch script. I'm entirely lost. It was working fine earlier, then in the middle of making the script it stopped working. So I went back to the previous working script and it would no longer work. Terminal opens and immediately closes.

    


  • QTFF, ISO 14496-12 and elst-media_time value

    5 mars 2021, par aymv
      

    1. What is the priority standard for decoding mov files ?
    2. 


    3. What value should be set in elst/media_time ? Can we check it somehow ?
    4. 


    


      

    • In QuickTime File Format Specification media_time is DT value :
    • 


    


    


    The edit list atom provides the initial DT value if it is nonempty
(nonzero).

    


    


      

    • In ISO IEC 14496-12 media_time is CT value.
    • 


    


    


    The Edit List Box provides the initial CT value if it is non‐empty
(non‐zero).

    


    


    It looks like the media_time value can be calculated and checked with CT + ctts (for ISO IEC 14496-12). But how to interpret the next note ?

    


    


    Edits are not restricted to fall on sample times. This means that when
entering an edit, it can be necessary to (a) back up to a sync point,
and pre‐roll from there and then (b) be careful about the duration of
the first sample — it might have been truncated if the edit enters it
during its normal duration. If this is audio, that frame might need to
be decoded, and then the final slicing done. Likewise, the duration of
the last sample in an edit might need slicing.

    


    


    Does this mean that the media_time may not indicate a specific PTS of the first frame but in the "middle" of two frames for example ? But I did not find in the standard how to work with this situation and which of these two frames must be displayed in such a situation as the first frame.