Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (52)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (9544)

  • ffmpeg How to stream to my own server ?

    10 février 2018, par Ricky

    I have an app that can take in an hls source and output to an rtmp endpoint but what if I want to stream to my own server ? How would I set up my own rtmp end point. I would love to be able take a stream in and stream that stream to my own app so the user can see the stream. for example :

    if I stream to my own server like this

    ffmpeg -re -i "https://mnmedias.api.telequebec.tv/m3u8/29880.m3u8" -f flv "160.222.22.22"

    I have been googling all around and haven’t found any tutorials or guides in doing so. Any pointers would greatly be appreciated.

  • batch processing - converting and adding AAC tracks

    2 août 2018, par xorinzor

    Is it possible to write a bash script (maybe using something like ffmpeg) to detect if a movie :

    • contains no AAC 5.1 audio track
    • does contain an AC3 (5.1 or higher) audio track

    and convert the AC3 to AAC, while keeping the AC3 track as-is, and adding the AAC as a secondary track to the movie ?

    From what I’ve been able to find no such tools exist to do this in batch-processing, and since I have a lot of movie files it’d be too much work to do this manually.

    I’d love to hear some thoughts, pointers, examples or idea’s about this.

  • How do you display things in the rails console for the user in Rails ?

    30 décembre 2014, par Swaathi K

    I am using Streamio-ffmpeg to process files. The gem shows the progress of the transcoding in the console. I want to display this progress to the user. Is there anyway of doing this ?

    This is my helper : (Where the transcoding is done)

    if myfile.filetype == "video"
           movie = FFMPEG::Movie.new(oldpath(myfile))
           movie.transcode(newpath(myfile),"-deadline realtime -aq 10 -qmax 25") { |progress| puts progress }

           FileUtils.rm_rf(oldpath(myfile))

    The { |progress| puts progress } is responsible for printing the progress to the console. Can I display this in my views instead ?