Recherche avancée

Médias (0)

Mot : - Tags -/flash

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

Autres articles (57)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • 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

Sur d’autres sites (8321)

  • YouTube live says not receiving data

    27 décembre 2016, par Steve Lobdell

    So, I’m using ffmpeg. I can stream videos to YouTube live I’ve downloaded from the internet successfully using this command :

    ffmpeg -re -i "C:\video.flv" -c:v libx264 -preset slow -crf 18 -c:a copy -f flv "rtmp://a.rtmp.youtube.com/live2/xyz"

    When I try to stream a video that’s been recorded from a specific device, that is also flv and with same command, it’s not working. FFMpeg says it’s transmitting, no errors there. In the live dashboard on YouTube I get a green "Starting" briefly but then it goes grey to say it’s not receiving data. The only difference is the actual flv files.

    Any idea why YouTube Live would say it’s not receiving any data instead of giving me an error, when it clearly is receiving it because it works with other video files ? Thanks

  • How to create a youtube like preview of video ?

    11 juin 2012, par Udhay

    enter image description hereHow to create a youtube like video preview ? That is in youtube, it is showing the preview of the video when we mouseover the progress bar ? How to do that kind of preview using ffmpeg or mencoder or is there any other way to do that ? Have a look at this image. Please go here for a live preview.

    http://www.youtube.com/watch?v=yto4_QFoLdA&feature=watch-now-button&wide=1

  • Converting YouTube live stream to streaming aac

    12 octobre 2020, par Anonymous Mouse

    For educational purposes, I'm trying to convert a YouTube live stream into a more traditional streaming aac (like what is used by radio stations for online streaming).

    


    The furthest I got is creating a aac file with ffmpeg and youtube-dl

    


    ffmpeg -i $(youtube-dl -f 96 -g https://youtu.be/livestreamurl) stream.aac


    


    It's obviously isn't working, the aac file is not bring "streamed", as the length of the aac file is just as long as up to the point it's opened. I would like to learn about the aac stream that radio stations use and how I could create one with a YouTube live stream. I do not know what phrase I should Google about that. Any help would be appreciated.