Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (74)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (6166)

  • Youtube-dl and Shell speed

    7 août 2016, par JJ The Second

    So I’ve been experimenting with youtube-dl on Ubuntu 14 recently and I should say downloading is well fast even I have a 1GB Ubuntu LAMP but when it comes to triggering FFMPEG and deleting process hangs for a good time. Even worked with -k but as soon as FFMPEG process is completed, it takes time to respond. I do understand this is a big subject but I’d really like to hear your thoughts, what amazes me is how a website like thisis running in less than a second ? Here is what I have,

    [youtube] UxxajLWwzqY: Downloading webpage
    [youtube] UxxajLWwzqY: Downloading video info webpage
    [youtube] UxxajLWwzqY: Extracting video information
    [info] Writing video description metadata as JSON to: /var/www/html/download/Icona Pop - I Love It (feat. Charli XCX) [OFFICIAL VIDEO].info.json
    [download] Destination: /var/www/html/download/Icona Pop - I Love It (feat. Charli XCX) [OFFICIAL VIDEO].m4a
    [download] 100% of 2.73MiB in 00:00
    [ffmpeg] Correcting container in "/var/www/html/download/title.m4a"
    [ffmpeg] Destination: /var/www/html/download/title.mp3
    Deleting original file /var/www/html/download/title.m4a (pass -k to keep)
    youtube-dl "http://www.youtube.com/watch?v=UxxajLWwzqY" --write-info-json  --extract-audio --audio-format mp3  -o "/var/www/html/download/%(title)s.%(ext)s"

    I really don’t understand how this is done so fast ? Is there anything I’m missing ?

    Thanks for your time.

  • Test if YouTube stream key is still active

    17 avril 2022, par codingmaster398

    I'm making a service to stream to YouTube, simply put.

    


    If the live stream ends or the stream key is no longer being used, we need to know. So far, it plays a short 3 second clip every once in a while, and if FFMpeg stops before it streams, we assume that the stream key is invalid. However, once we start a stream with the correct stream key, then end it and reset the stream key in another stream, the stream key still is being picked up as active.

    


    Is there any API to see if the stream key is still being used ?

    


  • How to collect specific Youtube channel uploaded videos and use FFMPEG to convert to MP3 [on hold]

    6 novembre 2014, par Daniel Kirkby

    I am currently attempting to create a php script that can crawl a Youtube channel’s uploaded videos and parse them through FFMPEG to a mp3.

    .eg (https://www.youtube.com/user/PandoraMuslc/videos) download each .flv then convert to mp3 using a script that can do the whole channel instead of one at a time as there are a few hundred uploads. while I have found scripts that can make FFMPEG convert to mp3 and scripts to show the uploaded videos in XML I kinda just want to figure out how to get each video automaticly, Maybe a script that can be cron’d ?