Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (105)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

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

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (9539)

  • Is there a way to encode multiple audio and sub streams managed by language

    17 juillet 2020, par ScarVite

    so, i have a folder full of .mkv's, i have a one liner which can convert them all to mp4's
these new files now have multiple audio and subtitle streams, one eng, one ger one jap and for subtitles the same, is there an way with which i can easily specify use f.e. German audio and burn eng subtitles.
My One Liner :

    


    for /R %f IN (*.mkv) DO ffmpeg -i "%f" -c copy "%~nf.mp4"


    


    How would i have to modify this one Liner for it to work.
I found out that with -vf subtitles=foo.ass i can hardcode subtitles, but how do i select one audio and or subtitle stream from included with the file ?
and how would i select f.e. a audio atream but none subtitle stream

    


    I found out, that with

    


    -map 0:V -map 0:a:m:language:ger -map 0:s


    


    I can get a file with which only has the german audio files, but now i need the same for the subtitles, to only include the english ones

    


  • Specifying track title or language in MPEG DASH MANIFEST

    10 février 2019, par Ramesh Navi

    I am creating a manifest to playback Adaptive WebM using DASH. Everything working pretty fine but I need language-name/track-name instead of bitrate. Is it supported ? How can update/optimize to support such feature ?

    Manifest creation :

    ffmpeg \
    -f webm_dash_manifest -i webm240.webm \
    -f webm_dash_manifest -i webm360.webm \
    -f webm_dash_manifest -i webm480.webm \
    -f webm_dash_manifest -i webm720.webm \
    -f webm_dash_manifest -i audio1.webm \
    -f webm_dash_manifest -i audio2.webm \
    -f webm_dash_manifest -i audio3.webm \
    -f webm_dash_manifest -i audio4.webm \
    -c copy -map 0 -map 1 -map 2 -map 3 -map 4 -map 5 -map 6  -map 7 \
    -f webm_dash_manifest \
    -adaptation_sets "id=0,streams=0,1,2,3 id=1,streams=4,5,6,7" \
    manifest.mpd

    Player audio track selection :

    enter image description here

  • How does C language use ffmpeg to send the H.264 network stream packed by RTP to RTMP server ?

    21 décembre 2020, par yanzhang.guo

    My requirement is : listen to the socket, and the monitored data is H.264 video data encapsulated by RTP. I want to push the monitored data from socket to RTMP server directly. What should I do ? Whether can provide a general idea, I use C language to realize.
I found the following two methods on the Internet. Are there corresponding APIs ? In addition, are there other methods ?

    


    Method 1: unpack RTP package, extract H264 data, and push it out with 
ffmpeg API;
Method 2: call ffmpeg API directly to push the data encapsulated by RTP.