Recherche avancée

Médias (91)

Autres articles (28)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

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

Sur d’autres sites (4546)

  • How to set up FFmpeg thumbnail generator [on hold]

    26 octobre 2013, par Juddy Swaft

    i need set up FFmpeg thumbnail generator that automatically thumbnails apear on videos i have installed on my server FFmpeg service so i need php help.
    p.s im using php.melody cms

  • User desktop screen recording in asp.net [on hold]

    26 octobre 2013, par Akash Langhani

    how to recored user desktop video in c# asp.net application, what type of library sdk or nay command line tools required, can we recored user screen in FFmpeg.

  • ffmpeg live stream overlay issues,while any one of the stream is lost other streams are getting stuck

    29 mars 2013, par Samy

    So far we have done

    We have a video chat client which has a set of 9 video streams (users) with
    h.264 codec using Adobe FMS. Now, using ffmpeg we are able to combine these
    streams into one stream using the overlay (video) and amix (audio) filters.
    We are able to send the single combined stream to a live streaming service.
    The stream of the active speaker is shown in a bigger size using the scale
    property of ffmpeg.

    Code as follows :

    ffmpeg -i "rtmp://localhost/live/mystream" -i "rtmp://localhost/live/mystream2 " -i "rtmp://localhost/live/mystream3 "-filter_complex"nullsrc=size=300x300 [b1];[0:v] setpts=PTS-STARTPTS,scale=100x100 [s1];[1:v] setpts=PTS-STARTPTS,scale=200x200 [s2];[2:v]setpts=PTS-STARTPTS,scale=100x100 [s3];[b1][s1] overlay=shortest=1 [b1+s1];[b1+s1][s2] overlay=shortest=1 [b1+s2];
    [b1+s2][s3] overlay=shortest=1:x=100" out.mp4

    Help Needed in the following 2 major issues. Any help would be appreciated.

    1. Whenever the active speaker changes, the stream of that user should be shown in a bigger
      size. is this possible to do without restarting the ffmpeg process ?

    2. Right now, if one of the 9 streams stops, the ffmpeg process crashes.