Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (78)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (12186)

  • Does GStreamer internally use the ffmpeg code ?

    24 février 2015, par jack dowson

    I am looking for some implementations in ffmpeg adn gstreamers, for muxers. I downloaded the source code for ffmpeg and gstreamer. Gstreamer internally has ffmpeg files. I have not built the workspace for gstreamer. So could anyone clarify as to what code of ffmpeg is sitting inside the GStreamer

  • ffmpeg add loop to this line of code i have

    5 juin 2020, par steve

    the code itself is working fine however the 2.mp3 finishes instead i will like it to just loop all the way keeping the current settings how it is as I am happy with it

    



    ffmpeg -i "C:\Users\test\Desktop\vidz\New folder (2)\target\vaastav song .mp4" -i "C:\Users\test\Desktop\vidz\New folder (2)\target\2.mp3" -filter_complex "[1:a]adelay=3000|60000[1a];[0:a][1a]amix" -vcodec copy -y "C:\Users\test\Desktop\vidz\New folder (2)\target\output1.mp4"


    


  • Can I use a config file within an embedded youtube-dl code ?

    10 mai 2017, par Stack Johan

    Right now, I’m having issues with ffmpeg not being recognized. I have the ffmpeg files stored in a folder, and I normally call ffmpeg using —ffmpeg-location.

    I don’t know how to do that within Python code, and I would prefer to use config files to call all the options.

    This is what I have right now :

    from __future__ import unicode_literals
    import youtube_dl


    ydl_opts = {
       'format': 'bestaudio/best',
       'outtmpl': u'%(id)s.%(ext)s',
       'postprocessors': [{
       'key': 'FFmpegExtractAudio',
       'preferredcodec': 'mp3',
       'preferredquality': '192',
    }]
    }
    with youtube_dl.YoutubeDL(ydl_opts) as ydl:
    ydl.download(['https://youtu.be/Y_n0UwQMz5o'])