Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (79)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (12738)

  • How do install ffmpeg in android for youtube-dl

    21 novembre 2019, par Wasp Nesser

    I have got a python code for downloading a video (from youtube) and converting to mp3. I used youtube-dl for these. Python code works in computer. But that error occurred in my android :

    youtube_dl.utils.DownloadError: ERROR: ffprobe/avprobe and ffmpeg/avconv not found. Please install one. [Program finished]

    I couldn’t find how to install these requirments in android . I use application called pydroid3 for executing python codes , installing python libraries and terminal staff. I tried to install ffmpeg and ffprob libraries with pip .But it didn’t helped me. After I tried to execute

    adb shell pm install ffmpeg

    And It didn’t helped me to.

    This is my code :

    import youtube_dl
    import os
    outtmpl = "%(playlist_title)s-%(playlist_uploader)s /%(playlist_index)s %(title)s-%(uploader)s.%(ext)s"
    ydl_opts = {
       'format': 'bestaudio/best',
       'postprocessors': [{
           'key': 'FFmpegExtractAudio',
           'preferredcodec': 'mp3',
           'preferredquality': '192',
       },
           {'key': 'FFmpegMetadata'},
       ],
       'outtmpl' : outtmpl,
    }

    url = input("Enter url : ")

    with youtube_dl.YoutubeDL(ydl_opts) as ydl:

       ydl.download([url])
  • download part youtube video with ffmpeg ?

    1er août 2020, par testoflow

    I can't get this right
    
ffmpeg works well so can you help me ?

    


    #I can't get this right

    


    #!/bin/bash
var=$(xclip -o)

if [ -z $var ]; then  
    echo 'copia url a descargar al portapapeles'  
fi  

printf "(1) download part of video without audio\n"
printf "(2) download part of audio\n"
echo
echo -n 'opcion: '
read opcion
case $opcion in
    "1") c=$(youtube-dl -g $var | awk '{ if(NR==1) print $0 }' | sed 's/^/"/;s/$/"/')  && echo -n 'start time: ' && read segundos && echo -n 'duration: ' && read duration &&  ffmpeg -i $c -ss $segundos -t $duration probe.mp4;;  
    "2") b=$(youtube-dl -g $var | awk '{ if(NR==2) print $0 }' | sed 's/^/"/;s/$/"/')  && echo $b && ffmpeg -ss 0 -i $b  -t 10 probe.mp3;;  
esac  


    


  • ffmpeg, stereo + 5.1 surround, and YouTube's "Recommended upload encoding settings"

    31 juillet 2021, par CoreyVidal

    I'm trying to make sense of something YouTube has listed on their recommended upload encoding settings for the best possible quality. Here's the link : https://support.google.com/youtube/answer/1722171#zippy=%2Caudio-codec-aac-lc

    


    Specifically this line :

    


    

      

    • Channels : Stereo or Stereo + 5.1
    • 


    


    


    I'm Googling for "Stereo + 5.1" and anything to do with ffmpeg but I can't seem to find much of anything.

    


    I have trailers with surround audio I need to export for a client for YouTube.