Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (48)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

Sur d’autres sites (10736)

  • FFMpeg Playlist with pipe for streaming [on hold]

    24 juillet 2017, par sword1st

    I’m trying to find a solution for stream multiple files without any connection breaks. I found this answer from KKetch :

    I managed to stream a static playlist of videos by using for each video a pipe (ex vid1.mp4 -> pipe1, vid2.mp4 -> pipe2 etc). Then i write into a single stream named pipe "stream" this way cat pipe1 pipe2 pipe3 > stream, and i use the stream pipe as input in FFMPEG to publish my stream.

    (I’m using windows. I don’t know to use named pipes. I searched a lot but i couldn’t do it. I can do it with vb.net if it’s possible. But i don’t know how :/ Sorry for my bad english)

    But i can’t reply his message cuz i don’t have enough reputation. I hope someone can help me how can i use pipes for input like playlist. Thanks !

  • Android - Exoplayer - Progressive live streaming - Mpeg2 - Audio issue

    1er août 2020, par Suresh

    Hi I have live stream URL ... When I tried to play with latest exoplayer version 2.11.4 .... Video is being played and audio is not playing ....

    


    type of the url is decided based on

    


    int type = Util.inferContentType(uri);

    


    and it is ProgressiveMediaSource

    


    i have no signs of audio log both

    


    debugViewHelper = new DebugTextViewHelper(player, this.debugTextView);
player.addAnalyticsListener(new EventLogger(trackSelector));


    


    but the url is played well in other players like VLC ...

    


    and i have checked with ffprobe it is having both audio and video stream ...

    


  • FFmpeg Concatenate dynamic media files on the fly

    24 février 2019, par David

    I have several ts files which I need to concatenate while some of the media files are still being converted, below is the scenario :

    1. First .ts file ready and stored in named pipe
    2. Second .ts file still being processed by ffmpeg and will take some time to finish.
    3. Last .ts file ready and stored in named pipe

    What I would like to do now is to concatenate all these 3 files together (no re-encoding), in this case file(2) is still being converted. How can I achieve this ?

    The purpose is to send to a client (HTTP) the output chunks from concatenation without waiting for the whole process to finish.

    Thanks