Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (95)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

  • MediaSPIP Init et Diogène : types de publications de MediaSPIP

    11 novembre 2010, par

    À l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
    Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
    Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (9639)

  • Starnge behavior of ffmpeg while opening rtsp with .sdp

    7 avril 2014, par Pawel Rutka

    I have problem with reading rtsp stream(.sdp) over ffmpeg - is here anyone who is able to help me or have something incommon with this kind of troubles ?

    url stream :

    rtsp://192.168.1.7/moja.sdp

    Here is a log with -loglevel debug , why is there 127.0.0.1 ?

    [rtsp @ 0x9fef0a0] SDP:
    v=0
    o=- 1 1 IN IP4 127.0.0.1
    s=IPCam
    c=IN IP4 0.0.0.0
    t=0 0
    a=type:broadcast
    m=video 0 RTP/AVP 96
    a=rtpmap:96 MP4V-ES/90000
    a=fmtp:96 profile-level-id=1;config=000001B001000001B58913000001000000012000C488800F514043C1463F
    a=control:track0
    m=audio 0 RTP/AVP 8
    a=rtpmap:8 PCMA/8000
    a=control:track1

    [rtsp @ 0x9fef0a0] video codec set to: mpeg4
    [rtsp @ 0x9fef0a0] audio codec set to: pcm_alaw
    [rtsp @ 0x9fef0a0] audio samplerate set to: 8000
    [rtsp @ 0x9fef0a0] audio channels set to: 1
    [rtsp @ 0x9fef0a0] hello state=0
    [rtsp @ 0x9fef0a0] UDP timeout, retrying with TCP
    [rtsp @ 0x9fef0a0] method PAUSE failed: 501 Not Implemented
  • tests/fate-run : Always overwrite output files for md5 tests

    20 septembre 2020, par Andreas Rheinhardt
    tests/fate-run : Always overwrite output files for md5 tests
    

    Otherwise the result of such tests will not accurately reflect the
    current state.

    Reviewed-by : Jan Ekström <jeebjp@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] tests/fate-run.sh
  • Bash Scripting FFMPEG how to wait the process to complete

    9 décembre 2013, par user1738671

    I have a strange problem. I have a folder monitor with incrontab that launches an automatic transcoding script on CLOSE_WRITE state of a file I dropped in. The problem is that the script doesn't wait until the ffmpeg process finishes before continuing with the rest of the script commands. This means that the original file get deleted before the transcoding is finished, which is bad.

    First question :
    What is the root cause of this behaviour ?

    Second question : In a bash script, what is the best way to make sure an ffmpeg process is done before get going with the rest of the script ?

    Script :

    #/bin/bash

    #transcoding
    /usr/bin/ffmpeg -i "sourcefile push with incron as $1" -vcodec somecode -acodec somecodec "destination file"

    #delete source
    rm "path/to/file$1"

    Should I encapsulate my FFMPEG in a while statement ?