Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (30)

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

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (6799)

  • Live streaming using FFMPEG [migrated]

    15 mars 2013, par Luuk D. Jansen

    This is rather a simple question, but I cannot find the answer.
    I need to stream from a capture device to a server, and then have FFMPEG on the server re-code the stream suitable for HLS.

    But how do I do this ?
    I looked at Flash Media Live Encoder and VLC and ffserver but cannot really get my handle on how this should work. Basically it just seems to me I need a program to sent to a server, which accepts the stream (and maybe some user authentication) and then makes the stream available for use. I already have a system that takes files and encodes them for HLS, so then I can just as input parameter point to this application on the local server to take the stream and start encoding.

    edit : it is really only the step to accept e.g. a rtmp connection and make that available to FFMPEG on the same server. I was hoping that e.g. ffserver could do that, but I don't think so.

  • FFMPEG : Queue input is backward in time & invalid, clipping issue [on hold]

    22 octobre 2013, par Sai

    I am using FFMPEG to convert the following video from wmv to flv and getting errors.

    Command is

    ffmpeg -i Sample.wmv  -qscale 0 -s 472x314 -ar 22050 -ac 1 -ab 96k  -g 5 Sample.flv

    I am getting these errors

    [libmp3lame @ 000000000030b640] Queue input is backward in time
    [flv @ 00000000003e6b20] st:0 PTS: 560 DTS: 560 < 577 invalid, clipping

    Although the file is getting converted from the command line. Conversion is being interrupted after integrating with my application.

    And the video size is 300MB

    Any idea why these errors were coming ?

  • live stream with ffmpeg and IP camera

    23 octobre 2013, par hamilton.lima

    I'm reading a live stream from a DKSEG IP camera, but the results are not good at all ...

    Here is the command line used for this :

    ./ffmpeg -i "http://192.168.0.29/videostream.asf?user=admin&pwd=&resolution=64&rate=0" -vcodec libx264 -r 30 -s 640x480 -threads 2 -vprofile baseline -vpre zoom -strict experimental -acodec aac -ab 96000 -ar 48000 -ac 1  -f rtsp rtsp://xxx.xxx.xxx.xxx:1935/live/_definst_/c3

    the zoom.ffpreset :

    coder=1
    level=31
    maxrate=1200000
    bufsize=200000
    wpredp=0
    g=60
    refs=1
    subq=3
    trellis=0
    bf=0
    rc_lookahead=0

    Even when I save to a mp4 file the results are not good, with some gaps in the video.

    Any toughts ? suggestions ?