Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (43)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

  • 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 ;

Sur d’autres sites (6401)

  • ffmpeg pipe livestream to ffplay

    4 mars 2021, par Dobbelina

    I wonder if it is possible to pipe an internet livestream from ffmpeg to ffplay ?

    



    Examples to illustrate :

    



    Livestream to test.mp4 works

    



    ffmpeg -i "https://Some livestream" -c copy "C:\ffmpeg\test.mp4"


    



    Recorded video to test.mp4 and pipe to ffplay works

    



    ffmpeg -i "https://Some recorded video" -c copy "C:\ffmpeg\test.mp4" -f matroska - | ffplay -fs  -


    



    Livestream to test.mp4 and pipe to ffplay don't work

    



    ffmpeg -i "https://Some livestream" -c copy "C:\ffmpeg\test.mp4" -f matroska - | ffplay -fs  -


    



    I get this error :

    



    


    pipe: : Invalid data found when processing input

    


    



    How do i get "Livestream to test.mp4 and pipe to ffplay" to work so i can watch the livestream
while it is recording ?

    



    (If it's possible i mean)

    


  • Multiple subtitle tracks on iOS with AVPlayer [closed]

    23 novembre 2024, par Martin Paucot

    I have a bunch of videos that are hosted on Vimeo. To allow users watching them on the mobile apps (Android & iOS) we use the m3u8 format given directly by Vimeo.

    


    It works great with expo-video as all our videos have transcript for different languages.

    


    I would like to allow the users to download videos so they can be watched offline. To achieve that I use ffmpeg to convert the .mp4 to .mkv and combine the .srt files.

    


    This solution works great on android, users can download videos and watch them offline with the ability to select subtitles. Unfortunately it seems that the AVPlayer on iOS (used by expo-video) does not support MKV. I tried different formats mov, mp4 containers, m4v where subtitles show properly on VLC after conversion but not on the iOS player. (either no subtitles at all, or only the first track).

    


    Is there a file format supported by AVPlayer that allows multiple subtitle tracks ?

    


  • How to extract audio tracks from a stream using FFMPEG or other tools ?

    17 septembre 2023, par Vassili Bagrov

    Here is the stream link that I am trying to download.

    


    I can download the video, but for some reason it doesn't include the audio stream.

    


    The audio stream is also in .ts format and has 1569 chunks.enter image description here

    


    When I downloaded all the audio files, I tried to convert them in single temp.ts file to them convert it into an mp3 file with this command :

    


    cat audio_7e42e066-9f6c-44f4-9ac8-10b50c3edfae_*.ts > temp.ts


    


    I tried to then convert it into an mp3 file with this command :

    


    ffmpeg -i temp.ts -acodec copy out.mp3


    


    But got an error :

    


    temp.ts: Invalid data found when processing input


    


    What are my options to download audio files ? There are actually 3 audio tracks if I watch the video from the website.
Please tell me there is a way to do it other than screen record the whole video.