Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (63)

  • 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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (8552)

  • How can i forcing current frame to be encoded as intra frame using libavcodec

    14 avril 2021, par pensir

    I want to change gop dynamic to adapt to player. Smaller gop help for reduce first screen cost ; Big gop help to reduce bitrate to save bandwidth.

    


    I found nvenc has a function which can solve the problem above.
https://docs.nvidia.com/video-technologies/video-codec-sdk/nvenc-video-encoder-api-prog-guide/#forcing-current-frame-to-be-encoded-as-intra-frame

    


    But I'm using ffmpeg. Is there any similar function in ffmpeg ?

    


  • avformat/flacenc : Fix memleak when writing attached pictures fails

    20 novembre 2020, par Andreas Rheinhardt
    avformat/flacenc : Fix memleak when writing attached pictures fails
    

    The FLAC muxer currently stores an attached picture corresponding to an
    AVStream in AVStream.priv_data. The AVPacket contained therein is
    unreferenced after it has been written. The AVPacket structure itself is
    then freed generically as AVStream.priv_data.

    And this can lead to memleaks if an attached picture is not written :
    It might be because the trailer is never written or because writing
    a previous attached picture failed in case error_recognition is set
    to explode.

    Therefore free the packets properly (i.e. with av_packet_free())
    in the muxer's deinit function.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/flacenc.c
  • ffmpeg cut first and last second of every clip

    25 septembre 2017, par Giovanni Gagliardi

    I’d like to make a batch operation for all files in a folder.
    For every file I need to remove the first and last second of the clip, and save it to a destination folder.
    This is the command I used :

    for %f in (“*.*”) do c:\ffmpeg\bin\ffmpeg -i "%f" -ss 00:00:01.000 -sseof 00:00:01.000 -c:v copy -c:a copy “u:\footage\%f”

    That command does not work. It cuts the first second but leave the rest of the file as is.
    Maybe there is something I need to change in the syntax regarding -sseof.