Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (33)

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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (3951)

  • FFmpeg Live Stream - Loop Video ?

    28 septembre 2019, par Dread-Eye

    I am trying to stream a video loop to justin.tv using FFmpeg ? I have managed to loop an image sequence and combine it with line in audio :

    ffmpeg -loop 1 -i imageSequence%04d.jpg -f alsa -ac 2 -ar 22050 -ab 64k \
      -i pulse -acodec adpcm_swf -r 10 -vcodec flv \
      -f flv rtmp ://live.justin.tv/app/
    

    Is it possible to do this with a video file ?

  • FFmpeg Live Stream - Loop Video ?

    15 décembre 2015, par Dread-Eye

    I am trying to stream a video loop to justin.tv using FFmpeg ? I have managed to loop an image sequence and combine it with line in audio :

    ffmpeg -loop 1 -i imageSequence%04d.jpg -f alsa -ac 2 -ar 22050 -ab 64k \
      -i pulse -acodec adpcm_swf -r 10 -vcodec flv \
      -f flv rtmp ://live.justin.tv/app/
    

    Is it possible to do this with a video file ?

  • FFMpeg create thumbnail from HLS Live stream

    4 septembre 2019, par Dasio

    I would like to create a thumbnail for HLS stream.
    I am doing it already with mp4 files
    like this

    ffmpeg -y -ss 00:00:10.000 -i file.mp4 -vframes 1 -vf scale=256:144 out.jpg

    And it works great.

    But when I try it with HLS live stream, it just spams

    Opening 'liveX.ts' for reading.

    Even though 10th second is in ’live1.ts’

    Any solution to this ? And I would like if duration is not in stream, just report error.