Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (45)

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

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

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (5857)

  • 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 ?

  • Broadcast to youtube live via rtmp using vlc from terminal

    7 novembre 2016, par devprashant

    When run :

    cvlc -vvv 'Bootstrap Tutorial.mp4' --sout
    '#rtp{dst=rtmp://a.rtmp.youtube.com/live2,name=pa1p-8c4m-zzvp-5j6t,mux=ts}'

    i got this debug : http://www.wepaste.com/vlcdebug/

    when run :

    cvlc -vvv 'Bootstrap Tutorial.mp4' --sout
    '#std{access=rtmp,dst=rtmp://a.rtmp.youtube.com/live2/pa1p-8c4m-zzvp-5j6t,mux=ts}'  

    i got this debug http://www.wepaste.com/vlcdebug2/

    how to stream live video and audio to youtube using vlc from terminal.

    Resources followed :

    1. https://blog.vucica.net/2015/08/streaming-to-youtube-live-with-vlc-and-ffmpeg.html
    2. https://forum.videolan.org/viewtopic.php?f=14&t=130520&p=436913&hilit=rtmp+youtube#p436913
    3. Problems Starting VLC HTTP Stream with Servlet
    4. https://forum.videolan.org/viewtopic.php?f=4&t=112221&p=380232&hilit=rtmp+youtube#p380232
  • Youtube-dl Python3 ERROR : audio conversion failed : No such file or directory

    21 avril 2020, par WhiteAB

    I was building a small executable, using the youtube-dl module and it is giving me the following error, and I have tried several things and nothing has worked for me

    



    import pyperclip

url=pyperclip.paste()

os.system('''youtube-dl  --no-playlist -x --prefer-ffmpeg --audio-format mp3 --audio-quality 0  '''+ url)


    



    when i try to run it does this

    



    [youtube] Ak6ynwcCv1Q: Downloading webpage
[youtube] Downloading just video Ak6ynwcCv1Q because of --no-playlist
[download] Bad Computer - Disarray [Monstercat Release]-Ak6ynwcCv1Q.webm has already been downloaded
[download] 100% of 4.49MiB
[ffmpeg] Destination: Bad Computer - Disarray [Monstercat Release]-Ak6ynwcCv1Q.mp3
ERROR: audio conversion failed: file:Bad Computer - Disarray [Monstercat Release]-Ak6ynwcCv1Q.mp3: No such file or directory


    



    I believe that I need define a path to the mp3 file but I don't know where this path should be defined