Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (33)

  • 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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (3800)

  • ffmpeg compression commands to make diffrent video formats like youtube ?

    9 juillet 2022, par Sahll saharn

    I am trying to make a video streaming clone. suppose i got the raw video and wanted to compress in diff formats and store it into database so what command should i use to convert same video to multiple quality formats like in other streaming platforms 720p , 480p , 360p
suppose our raw file is input.mp4

    


  • Youtube encoder live streaming by using OpenCV and ffmpeg [closed]

    17 mai 2022, par David Logers

    Does anyone know the best way to do YouTube livestream using ffmpeg and python's opencv ?
I would be very grateful if you could let me know.
Thank you.

    


  • ffmpeg multiple rtsp cameras into sigle stream to youtube

    26 janvier 2017, par user3157121

    I have two rtsp ip cameras (dlink) and I want combine (merge) 2 stream in one video output and put it to yutube (live streaming).

    My first step is ok and my command is :

    ffmpeg
    -i "rtsp://xxxxxx:xxxxxx@192.168.1.164/live2.sdp"
    -i "rtsp://xxxxxx:xxxxxx@192.168.1.164/live2.sdp"
    -filter_complex "
    nullsrc=size=1600x448 [base];
    [0:v] setpts=PTS-STARTPTS, scale=800x448 [upperleft];
    [1:v] setpts=PTS-STARTPTS, scale=800x448 [upperright];
    [base][upperleft] overlay=shortest=1 [base];
    [base][upperright] overlay=shortest=1:x=800 [base]"
    -map [base] test.mp4

    My test.mp4 video output is ok.

    After that, I try to send this video to youtube live with this command :

    ffmpeg
    -i "rtsp://xxxxxx:xxxxxx@192.168.1.164/live2.sdp"
    -i "rtsp://xxxxxx:xxxxxx@192.168.1.164/live2.sdp"
    -filter_complex "
    nullsrc=size=1600x448 [base];
    [0:v] setpts=PTS-STARTPTS, scale=800x448 [upperleft];
    [1:v] setpts=PTS-STARTPTS, scale=800x448 [upperright];
    [base][upperleft] overlay=shortest=1 [base];
    [base][upperright] overlay=shortest=1:x=800 [base]"
    -map [base] -f flv "rtmp://a.rtmp.youtube.com/live2/xxx-xxxx-xxxx-xxxx"

    But the youtube stream does not receive data. (It seems to start but do not see the image). I think is a audio problem. But I don’t know how to insert a fake audio (I don’t want audio).

    Is there a solution ?

    Thanks,
    Mattia