Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (65)

  • 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

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (9148)

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