
Recherche avancée
Autres articles (42)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette 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. -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (5316)
-
Combining find -execdir with grep
31 mai 2021, par pasanI want to go through a bunch of files in various sub folders within a root directory quickly to get the video and audio format type.


I can get the information I need from a single file using :


ffprobe file.mp4 2>&1 >/dev/null | grep "Stream"



I can run ffprobe for each file inside the root folder using


find . -name "*.mp4" -execdir ffprobe "{}" \;



What I am struggling with is to use grep with the second command to filter the output I want (as per the first command) and pipe the entire output into a file.
What is the missing link/s here ?


-
buffersink : introduce FIFO_INIT_ELEMENT_SIZE to complement FIFO_INIT_SIZE
16 août 2015, par Andreas Cadhalpunbuffersink : introduce FIFO_INIT_ELEMENT_SIZE to complement FIFO_INIT_SIZE
Use sizeof(void *) as its value, because AVFilterBufferRef is deprecated.
Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> -
I can't find a good C# Media Transcoding Library [closed]
11 mai 2021, par TheYoungSethI am trying to find a good c# library for media transcoding, primarily video, and I don't seem to find anything good and actually usable. I do not want to use FFMpeg wrappers because I want my program to be user friendly and for public use which I can't do with FFMpeg because of the harsh usage rules that come with it.


Help would be appreciated,
thanks