Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (101)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • 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

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

Sur d’autres sites (9473)

  • Usage pipe input on ffmpeg

    5 mars 2021, par CancerYoon

    I want to cat + pv + ffmpeg command like this :
    
cat FILE | pv -L 6M | ffmpeg -y -f mp4 -i pipe: -f mp4 out.mp4

    


    but, i can see error like :
    
pipe:: Invalid data found when processing input

    


    How to fix it ?
    
ffmpeg : ffmpeg version 4.3.2-static

    


  • How do I use FFMPEG to pipe in a video file and pipe out a converted video file

    11 avril 2014, par Ranjit Aneesh

    I have very limited knowledge of FFMPEG.
    My use case is that I have a content server with a http url from where I want to pipe in a video file (The video file can be of any format) and I have to convert them to some other format, sometime changing the resolution, and then pipe out and post the video back to the content server.

    I cannot keep a copy of the video file on the local file system where I run ffmpeg since they can be of large sizes and precious time will get wasted in doing so and then calling ffmpeg for conversion and finally writing back the file to content server. I may have to support both Linux as well as windows

    My question is

    1. Is it possbile for FFMPEG to be able to read a file from an http url
    2. Is it possbile to pipe in this data in some other way to FFMPEG if 1 is not possible
    3. Is it possbile to write the data back to a http location by making a ReST put/post call
    4. If 3 is not possbile is there some other way that ffmpeg can push the data back to the server.

    Thanks

  • Can I pipe multiple ffmpeg outputs to different pipes ?

    4 mars 2021, par mr. rogers

    I have an AWS workflow that streams an audio or video file from S3 to ffmpeg inside a lambda. Which then streams the encoded output back to S3. I want to extend that flow to generate DASH content. On my local device, I can generate the MPD file and the encoded AV files. And there's the problem. Encoding to dash generates at least two files, even with the -single_file flag.

    


    Can I limit the dash export to just the video or MPD file ? Or can I somehow pipe the multiple outputs separately through some flag magic ?

    


    Thanks in advance.