Recherche avancée

Médias (91)

Autres articles (30)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

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

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

Sur d’autres sites (5668)

  • FFmpeg on Windows - Background converting

    30 juin 2016, par Dave

    I’m having real trouble in getting FFMPEG to convert in the background *Note that when I upload videos and through php the convert works but just sits there and I’m unable to navigate around my website until its finished.

    I don’t run Linux and don’t really have intentions of doing so. And I have windows 7 so unable to use the dev/null/ &. I did try that after reading the very few tutorials online, most of which are outdated due to the depreciated FFmpeg-php and it did absolutely nothing.

    The bit of code that I currently have to convert is as follows !

       $ffmpeg="C:/FFMPEG/bin/ffmpeg.exe";
       shell_exec("$ffmpeg -i ".$folder.$final_file." ".$destination_mp4." ");

    so my question would be. What are the right commands to allow a windows user to convert in php within the background successfully, whilst the video converts ?

  • Ffmpeg command to most efficiently merge mp3 audio file and jpeg image file to a video file [closed]

    25 juin 2020, par Eugen

    I'm looking for an efficient way to merge a large .mp3 file and a single .jpg image to a video format for youtube. If I use :

    



    ffmpeg -loop 1 -i image.jpg -i audio.mp3 -c:v libx264 -c:a aac -strict experimental -b:a 192k -shortest output.mp4


    



    the result is very slow, especially for large .mp3 files. Is it possible to do it more efficiently with ffmpeg ? I know there must be a way to do it much more efficiently, like all the online converters are doing it.

    


  • Install ffmpeg php on heroku and store files on AWS S3

    14 février 2018, par eneneharrison

    I run a php application on heroku and I store my files on AWS S3.
    I would like to upload an audio file in any file format and convert it into .mp3
    file using ffmpeg.

    How do I install ffmpeg on heroku ?
    How do I write the code to upload the newly converted audio file to AWS S3 ?

    I will appreciate any code snippets or a link to an online resource for further research.

    Thank you all.