Recherche avancée

Médias (91)

Autres articles (68)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

Sur d’autres sites (9814)

  • Media container for H264 and Opus

    27 avril 2013, par Ricky

    I am looking for a media container that can hold H264 video and Opus audio,
    allowing me to perform playback using VLC or equivalent. H264 is a hard
    requirement, and I picked Opus because of the licensing benefits.

    Wikipedia suggests
    that .ogg is what I'm looking for.

    However, when I looked at the VLC and FFMPEG source code, neither included H264
    support in their ogg demuxer (VLC source suggests that it only support Theora,
    Vorbis, and CMML, FFMPEG had something similar).

    Is there another container I can use ?

    Alternatively, I can also alternative audio encoder such as aac. But all aac encoders I found have less than appealing licensing associated with them (GPL).

  • How to play video bytes(h265,h264) to any media server from java [closed]

    29 avril 2023, par gtejas

    I have video bytes(came from device through tcp) i write into a file and its able to play now I need to play that stream on media server.

    


    ffmpeg -re -i myfile.mp4 -c:v libx265 -preset ultrafast -f mpegts rtmp ://ip:1935/live/stream

    


    can i play bytes directly ?

    


  • Segmenting media files with FFMPEG

    2 mai 2012, par Luuk D. Jansen

    In the newer releases of FFMPEG it is supposed to be possible to segment media files.
    I checked out the SVN with

    svn checkout svn://svn.ffmpeg.org/ffmpeg/trunk ffmpeg

    However, after building and trying to segment with the command below I get the error :

    Unrecognized option 'segment_time'

    Is there a specific ./configure option needed or a specific branch ?
    There is nothing mentioned in FFMPEG manual (neither which version supports it). I would prefer to use a pre-build production version if possible.

    Command used to test :

    ffmpeg -v 9 -loglevel 99 -re -i test.mov -an -c copy -b:v 128k -flags -global_header -map 0 -f segment -segment_time 4 -segment_list test.m3u8 -segment_format mpegts stream%05d.ts