Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (101)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (10806)

  • Failing to upload an mp4 to youtube

    28 juillet 2018, par Joseph Berry

    I’m trying to convert an WMA file into mp4 in order to upload the file to youtube.
    VN550672.wma.zip
    Although the conversion is successful (see below) i’m not able to upload the file to youtube. I’m getting the following error

    The video has failed to process. Please make sure you are uploading a supported file type.

    VN550672.mp4.zip

    Any suggestions ?

    System configuration :
    Python version : 3.6.3
    Pydub version : 0.22.1
    ffmpeg or avlib ? : ffmpeg
    ffmpeg/avlib version : 2.8.4

  • How to Live Stream YouTube without Audio [on hold]

    23 septembre 2016, par arsenalist

    I have two IP cam and a computer with ffmpeg to re-stream them to YouTube.

    First Cam

    It has Video and Audio. I can re-stream to YouTube successfully with this command.

    ffmpeg -re -rtsp_transport tcp -i rtsp://192.168.aaa.bbb:554/ch0_1.h264 -acodec libmp3lame -ar 44100 -b:a 128k -pix_fmt yuv420p -profile:v baseline -s 426x240 -bufsize 2048k -vb 400k -maxrate 800k -deinterlace -vcodec libx264 -preset medium -g 30 -r 30 -f flv rtmp://a.rtmp.youtube.com/live2/

    Second Cam

    It has Video only. However, with both commands below, I can’t stream to YouTube. (although the ffmpeg process is running well)

    ffmpeg -re -rtsp_transport tcp -i rtsp://192.168.aaa.ccc/Streaming/Channels/102 -an -pix_fmt yuv420p -profile:v baseline -s 426x240 -bufsize 2048k -vb 400k -maxrate 800k -deinterlace -vcodec libx264 -preset medium -g 30 -r 30 -f flv rtmp://a.rtmp.youtube.com/live2/

    or

    ffmpeg -re -rtsp_transport tcp -i rtsp://192.168.aaa.ccc/Streaming/Channels/102 -acodec libmp3lame -ar 44100 -b:a 128k -pix_fmt yuv420p -profile:v baseline -s 426x240 -bufsize 2048k -vb 400k -maxrate 800k -deinterlace -vcodec libx264 -preset medium -g 30 -r 30 -f flv rtmp://a.rtmp.youtube.com/live2/

    I’ve test both camera’s stream first using FLV, and they work well. So, the issue is not the URL of IP camera.

    From what I understand, YouTube define stream as audio-video content. However, what if the source only has Video.

    So, my question :

    How to live stream YouTube without audio, specially from an IP cam ?

    Thanks

  • The Ultimate YouTube-DL script [on hold]

    30 juillet 2018, par G. L.

    I need help creating/finishing a bash script. What I’m trying to do is to create the perfect YouTube-DL archiving script.
    As of now, the only thing I can do is download all of a Users’ videos, embed subtitles, add metadata but I want to also autosub the files (with script number 2) and convert the downloaded files with ffmpeg or AVConv or handbrake-cli and then remove the video files when I have a successful conversion.

    Script 1 (downloads videos skipping already downloaded ones)

    youtube-dl -i -o "%(title)s-%(id)s.%(ext)s" --all-subs --embed-subs --embed-thumbnail --add-metadata --sleep-interval=20 --rate-limit=1M --exec 'youtube-dl2kodi.py -t tvshow -f {}' --download-archive .archive $(cat url.txt)

    Note : youtube-dl2kodi.py creates Kodi compatible nfo files so I can view them properly on Kodi with metadata.

    Script 2 (subtitles videos automatically using autosub)

    for file in *I WANT TO AUTOSUB files in this directory and subdirectories*
    do
     autosub -S de -D de "$file" >> results.out
    done

    I want to merge script 1 and 2 and then encode the files and remove original video files (mp4, mkv and webm) if successful.
    My encoding preference is HEVC with CRF 23 and I don’t want to encode the audio. I want to copy the audio. The final video would be a MKV file.