Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (51)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le 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 (9064)

  • how to get interval frames and key frames by ffmpeg with one command ?

    17 janvier 2023, par shsf

    I need to get the pictures of the video with one command.

    


      

    1. gets a frame by interval ;For example 0s 10s 20s 30s ... ;In order to generate sprites
sprite
    2. 


    3. gets a keyframe at a fixed interval ; In order to show the video synopsis ;
    4. 


    


    How to modify the following commands ?

    


    ffmpeg -y  -ss -5  -i   <input />  -vf  fps=fps=1/10  -s 480x270   p1/out-%04d.png -vf "select=&#x27;eq(pict_type,PICT_TYPE_I)&#x27;" -vsync vfr -s 480x270 -frame_pts true p2/out-%05d.png

    &#xA;

  • Fully scraping m3u8 with ffmpeg without recoding

    12 novembre 2022, par gsemyong

    There is a manifest living on the server (index.m3u8) containing data about child manifests (for different video qualities) which in turn contain segment names. Is it possible to provide to ffmpeg (or any other tool) url of index.m3u8, to get all index.m3u8, child manifests and video segments, preserving playlist structure and files as is (that means without recoding, etc.) ?

    &#xA;

    Thank you in advance !

    &#xA;

    I tried searching for different flags. There is an option to download segments without recoding, but the names and manifests are not preserved. Tried to find a tool to generate manifests from existing segments based on different rules - didn't find any. I think I can always reserve to writing manifests generation from scratch, but would like to avoid it :)

    &#xA;

  • Encode & play video formats without 3rd party codec packs

    20 septembre 2013, par Jezza

    We have built a windows based software system that allows users to import their own video for viewing in the software. It works fine for AVI and WMV as we use a windows based player. For encoding or playing to work with most common video formats we have to ask our customers to download a 3rd party codec pack, such as K-Lite or Combined Community Codec Pack. Many of our customers are not allowed to do this due to IT Management rules.

    Are they are any suggestions regarding a player and encoder that can be built into our windows based software without needing 3rd party codec packs.

    I am not sure if ffmpeg, handbrake, VLC can be used for this purpose.

    Thanks. J