Recherche avancée

Médias (91)

Autres articles (27)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

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

Sur d’autres sites (3863)

  • Merge commit ’d4a8a86c6863ecea208fa2f774690b6df4b5bc71’

    13 avril 2014, par Michael Niedermayer
    Merge commit ’d4a8a86c6863ecea208fa2f774690b6df4b5bc71’
    

    * commit ’d4a8a86c6863ecea208fa2f774690b6df4b5bc71’ :
    doc : Libavfilter English cleanup

    Conflicts :
    doc/filters.texi
    doc/libavfilter.texi

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] doc/filters.texi
  • Is there a method to use old versions of ffmpeg and opencv ?

    6 juin 2023, par mika_roll

    I'm trying to build a project through cmake and after some adjustements the terminal display some new errors about some libraries and I don't know how to fix them, an example :

    &#xA;

    /usr/bin/ld: warning: libopencv_core.so.3.4, needed by /media/myfolder/lib/Linux64_x64/file.so.3.3, not found (try using -rpath or -rpath-link)

    &#xA;

    and other errors like this one regarding libavcodec.so.57, libavformat.so.57...

    &#xA;

    I've already tried to install libavcodec-dev etc and also ffmpeg and opencv by command line, and all these packages contain effectively the .so files that I need but all of them have been updated to the new version that doesn't match the one specified in the warning lines.&#xA;So is there a way to install these old versions ? Or should I try something different ? I don't really know what to do, I'm kinda new to these things so I hope I can find some help.

    &#xA;

    Also, the project that I'm trying to build is not mine, someone else wrote it some time ago and my only task is to manipulate and adjust all the links to the different libraries.

    &#xA;

    English is not my first language so I really hope I wrote an understandable request !

    &#xA;

  • Fffmpeg mapping audio and video by language

    28 mars 2017, par Terrabyte

    I want to batch convert these mkv files, they contain more than one language. Instances include : Eng/Ger, Eng/JPN. Sometimes there are multiple video sources within the mkv for whatever reason :

    ive tried using :

    FFMPEG_PATH . ' -i ' . $localFile . ' -sn -map 0:v:0 -map 0:a:m:language:jpn -c:v ' . $videoCodec . ' -tune animation -crf 20 -refs 6 -bf 6 -trellis 1 -b_strategy 1 -profile:v high -level 4.0 -pix_fmt yuv420p -ac 2 -flags +aic+mv4 ' . $scale . ' ' . $convertedFilename;

    This one grabs the first video (this doesnt matter, but i need it to grab one video just in case)

    -map 0:v:0 -map

    I don’t thing this one works because when i tried it, it grabbed the english one instead so i dont know the issue.

    0:a:m:language:jpn

    I could do

    0:m:language:jpn

    but then id have to remove : 0:v:0 and sometimes theres a issue where just using the general mapping would encode both video sources so it wold double in file sizes

    so how would i just map the audio file while keeping the video mapping ?
    Fgmpeg is really confusing with this instruction.