Recherche avancée

Médias (91)

Autres articles (83)

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

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

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (6971)

  • vf_drawbox : make config_props work properly when called multiple times.

    18 mars 2013, par Anton Khirnov
    vf_drawbox : make config_props work properly when called multiple times.
    

    Do not overwrite the variables set through AVOptions.

    • [DH] libavfilter/vf_drawbox.c
  • YTDL-Core MP4 to MP3 doesn't work with FFMPEG (Code 101)

    14 septembre 2018, par doamatto

    In a simple YouTube downloader, I keep trying to get an MP4 to convert to an MP3 using FFMPEG/Fluent-FFMPEG (Fluent was used as recommened by the ytdl-core examples). However, both times resolve in one of two errors : Cannot find ffmpeg or code: 101, msg: "The input file path must be a string"

    I have updated the source to all be on GitHub (sorry for that slight inconvenience as opposed to it being here. It’s linked below. However, I have tried two things : using the normal "node-ffmpeg" library as the require for "ffmpeg", and using the "fluent-ffmpeg" library as the require for "ffmpeg." I mainly did this because via the ytdl-core uses such and I figured it may work in that case.

    Thanks in advance and thanks as a whole !

    The GitHub Repo : https://gist.github.com/Incrested/d9ef8125bd41afbb7e6720ec3a78e331

    Once again : thanks for any and all assistance !

    Edit : I’ve changed the URL to a better snippet of focus of where I think the issue is.

  • I am trying to generate thumbnail by using ffmpeg but I can not define pathways and make my codes work

    17 juillet 2020, par D. Merchant

    Fffmpeg modul is installed in my shared hosting.

    


    enter image description here

    


    My goal is to get a thumbnail of a video. My codes is in below. I can not make them work. This is my first time I use ffmpeg.

    


    require 'vendor/autoload.php';

$video_path = 'home/sasasasasa/public_html/wp-content/uploads/jvhyicpzxy.mp4';

$ffmpeg = FFMpeg\FFMpeg::create();
$video = $ffmpeg->open($video_path);
$video
    ->frame(FFMpeg\Coordinate\TimeCode::fromSeconds(5))
    ->save('new_preview1.jpg');


    


    When I try the codes in the above, I get this error :

    


    enter image description here

    


    1- What does 'vendor/autoload.php' pathway mean ? I can not see a folder called "vendor" in my file manager.

    


    2- I've check my ffmpeg folder with this code "exec('which ffmpeg') ;" and it outputs "/usr/bin/ffmpeg". But there is no directory in my file manager like that. After a search, Ive found this directory about ffmpeg : "/perl/usr/lib/perl5/FFmpeg". If I enter this path in my hosting, I can see only "Command.pm" and "Thumbnail.pm". What is my wrong, and how can I make my codes work and have a preview of the video ?