Recherche avancée

Médias (91)

Autres articles (81)

  • 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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (6837)

  • FFMpeg Logo Different Sepration [Beginner]

    9 mai 2024, par unkp

    Simple :

    


    1.Want a logo to be only for specific times on a video,

    


    motivation : reduce length of the process if possible.

    


    the code used for logo is this one :

    


    ffmpeg -i output0.mp4 -vf "movie=logo.png [watermark] ; [watermark]scale=220x220 [watermark2] ;[in][watermark2] overlay=main_w-overlay_w-10:main_h-overlay_h-10 [out]" output0logo0done.mp4

    



    


    Would Want like something like this if possible : keep the logo for 1 minute then 4 minutes later keep the logo again for 1 minute.

    



    


    Tried searching about this request, the answers found were related to ->

    


    split the parts like 1,2,3,4,5 only add the logo to odd parts ->

    


    combine them after, this may be too troublesome

    


  • FFMpeg Logo Different Sepration [closed]

    9 mai 2024, par unkp

    Simple :

    


    1.Want a logo to be only for specific times on a video,

    


    motivation : reduce length of the process if possible.

    


    the code used for logo is this one :

    


    ffmpeg -i output0.mp4 -vf "movie=logo.png [watermark] ; [watermark]scale=220x220 [watermark2] ;[in][watermark2] overlay=main_w-overlay_w-10:main_h-overlay_h-10 [out]" output0logo0done.mp4

    



    


    Would Want like something like this if possible : keep the logo for 1 minute then 4 minutes later keep the logo again for 1 minute.

    



    


    Tried searching about this request, the answers found were related to ->

    


    split the parts like 1,2,3,4,5 only add the logo to odd parts ->

    


    combine them after, this may be too troublesome

    


  • Using ffmpeg to stream to Facebook Live Video : can preview, but not go live

    17 novembre 2016, par Einar Magnússon

    I am trying to stream a webpage to Facebook Live video using ffmpeg. I know I can use OBS, but I’m trying to do it from a server, so I can’t go with OBS. It works fine when I’m previewing, but as soon as I press ’Go live’, at first it seems like it’s starting, but then when it takes me to the live view it just says that the video has ended. I even checked the error of the video log using Graph API, nothing. I’m using PhantomJS to pipe screenshots to ffmpeg :

    phantomjs phantom.js | ffmpeg -y -c:v mjpeg \
    -f image2pipe \
    -r 5 -i \
    - -c:v libx264 \
    -x264-params keyint=5 \
    -b:v 1000k -minrate 1000k -maxrate 1000k -bufsize 500k \
    -f flv 'rtmp://rtmp-api.facebook.com:80/rtmp/xxxxxxxxxxxxxxxx'

    As I said, it’s working fine in the preview of the live stream on Facebook, but just ends immediately when I go live. I added the bitrate options to try to keep a constant bitrate as mandated by Facebook (https://developers.facebook.com/docs/videos/live-video/production-broadcasts), and I have a keyframe every 5 frames (rather low frame rate at 5fps) so that requirement is fulfilled as well.

    I’m not sending any audio, could that cause a problem ?