Recherche avancée

Médias (91)

Autres articles (29)

  • 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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (5730)

  • ffmpeg add text every second with enable between filter

    12 janvier 2023, par HUNG
    ffmpeg -y -i public/media/vid1.mp4 -vf "drawtext=text='1':x=w-tw-50:y=50:fontcolor=black:fontsize=380:enable='between(t,1,2)',drawtext=text='2':x=w-tw-50:y=50:fontcolor=black:fontsize=380:enable='between(t,0,1)'" -codec:a copy public/media/vid1-1.mp4


    


    I want to add a number every second in a video. I googled and the syntax should like the above. However, only the text within between(t,0,1) can be shown and the value is keeping shown for the whole video duration. But I expected it should only show one second.

    


    I expected between(t,1,2) can show the text from 00:00:01-00:00:02. However, it never show.

    


  • ffmpeg errors out with error code : -5

    14 décembre 2016, par Anthony Mayfield

    Trying to run ffmpeg via pydub and receive :

    pydub.exceptions.CouldntDecodeError: Decoding failed. ffmpeg returned error code: -5

    dyld: lazy symbol binding failed: Symbol not found: _clock_gettime
     Referenced from: /usr/local/Cellar/ffmpeg/3.0.2/lib/libavutil.55.dylib
     Expected in: /usr/lib/libSystem.B.dylib

    dyld: Symbol not found: _clock_gettime
     Referenced from: /usr/local/Cellar/ffmpeg/3.0.2/lib/libavutil.55.dylib
     Expected in: /usr/lib/libSystem.B.dylib

    Running python 2.7.11 and OS X

  • libavformat : get formats Mime Type in C++

    9 août 2017, par ZeroTek

    I work on an C++ Application running on Arch Linux that should use libavformat to obtain a media files mime type. Currently using the following lines :

    std::string path = "/path/to/file.extension";

    av_register_all();
    AVFormatContext* pFormatCtx = avformat_alloc_context();
    avformat_open_input(&pFormatCtx, path.c_str(), NULL, NULL);
    avformat_find_stream_info(pFormatCtx, NULL);

    std::string mimeType(pFormatCtx->iformat->mime_type);

    Now, that will work as expected with *.mkv (Matroska) files. Returning the expected Comma seperated mimeType String "video/x-matroska,...". But with any other File Format like *.mp4 or *.avi the iformat->mime_type will always return NULL.

    How do i get the Mime Types of the other Container Formats ?