Recherche avancée

Médias (91)

Autres articles (111)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

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

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (11984)

  • Python - youtube-dl.utils.DownloadError : ERROR : audio conversion failed : file : mp3 invalid argument

    6 octobre 2022, par Cristina

    youtube-dl.utils.DownloadError: ERROR: audio conversion failed: file: mp3 invalid argument

    



    The above error appears with following parameters, running youtube-dl on Python 3.6 on Windows 7, FFmpeg and libmp3lame installed.

    



    ydl_opts = {                                                
"format": "bestaudio/best",
"extractaudio": True,
"outtmpl": fetch_name + "%(ext)s",
"noplaylist": True,
"nocheckcertificate": True,
"postprocessors": [{
    "key": "FFmpegExtractAudio",
    "preferredcodec": "mp3",
    "preferredquality": "192",
}],
"progress_hooks": [hook]
}


    



    fetch_name is for example C:\Path\File. [hook] just displays download messages.
I've searched here and on internet but can't find this error.

    


  • Python - youtube-dl.utils.DownloadError : ERROR : audio conversion failed : file : mp3 invalid argument

    14 mars 2017, par Cristina

    youtube-dl.utils.DownloadError: ERROR: audio conversion failed: file: mp3 invalid argument

    The above error appears with following parameters, running youtube-dl on Python 3.6 on Windows 7, FFmpeg and libmp3lame installed.

    ydl_opts = {                                                
    "format": "bestaudio/best",
    "extractaudio": True,
    "outtmpl": fetch_name + "%(ext)s",
    "noplaylist": True,
    "nocheckcertificate": True,
    "postprocessors": [{
       "key": "FFmpegExtractAudio",
       "preferredcodec": "mp3",
       "preferredquality": "192",
    }],
    "progress_hooks": [hook]
    }

    fetch_name is for example C:\Path\File. [hook] just displays download messages.
    I’ve searched here and on internet but can’t find this error.

  • No audio to youtube stream using ffmpeg

    16 avril 2022, par Devil

    My Stream File..

    


    stream.sh

    


    #! /bin/bash

VBR="1500k"
FPS="30"
QUAL="ultrafast"
YOUTUBE_URL=" rtmp://a.rtmp.youtube.com/live2"
YOUTUBE_KEY="**********"
VIDEO_SOURCE="video.mp4"
AUDIO_SOURCE="Selfish.mp3"
AUDIO_ENCODER="aac"


ffmpeg \
 -stream_loop -1 \
 -re \
 -i "$VIDEO_SOURCE" \
 -thread_queue_size 512 \
 -stream_loop -1 \
 -re \
 -i "$AUDIO_SOURCE" \
 -c:v libx264 -preset $QUAL -r $FPS -g $(($FPS *2)) -b:v $VBR -bufsize 3000k -maxrate $VBR \
 -c:a $AUDIO_ENCODER -ar 44100 -b:a 128k -pix_fmt yuv420p \
 -f flv $YOUTUBE_URL/$YOUTUBE_KEY


    


    Im sending audio from my client side.. But no audio coming to stream. But video is still working..

    


    Output photo
Preview Output