
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (41)
-
Publier sur MédiaSpip
13 juin 2013Puis-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 -
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 (8279)
-
Compress video with ffmpeg programatically - i.e. using C libraries instead of command line or wrapper
29 décembre 2014, par MickI am trying to find some examples or guidelines that help show how to compress a video programatically using ffmpeg API’s (i.e. the C API’s not the command line).
In other words I would like to achieve the equivalent of the following ffmpeg command line :
ffmpeg -i inoutVideo.mp4 -strict experimental -acodec aac CompressedVideo_aac.mp4
but using the appropriate API calls from a C program.
I can already do this by creating a wrapper around the ’ffmpeg.c’ program but I am trying to understand how to achieve this with the C libraries directly.
I realise I can simply(!) read the source code of ffmpeg.c to see what it does, but I was hoping for something that either provides and overview or a specific example for video compression.
Any pointers gratefully appreciated.
-
How to rip a movie-DVD using cmd-line FFMPEG
19 octobre 2022, par DavidI'm trying to use the cmd-line FFMPEG pgm, to rip a movie-DVD into either a MP4 or MKV container, on Windows-OS. (Please do NOT tell
me to use some other GUI-based pgm, as so many of the other articles
do.)


The part of the ffmpeg command that I can't determine, is just
what syntax to use to reference the DVD-drive as the input. (I've
looked in the FFMPEG documentation, but I can't see the forest
for the trees.)


[Edit :]So I did some more google-searches and found an article on using VLC for this task.
Since I already had VLC installed, this approach
seemed worth trying. That article is here : https://www.howtogeek.com/howto/2696/how-to-rip-dvds-with-vlc/
(Stay tuned for further updates on my progress.)


-
c# and ffpmeg command line trouble
26 février 2016, par mirzahatI have a php code that calls ffmpeg from the windows command line (because I run apache locally) with :
//ffmpeg -i input.mp4 -r 20 output.gif
echo exec('C:\ffmpeg\bin\ffmpeg.exe -i videos/file.avi -r 10 -s 450x230 videos/file.gif');And it works fine ! Now I wrote a C# program and I try to do the same thing with :
System.Diagnostics.Process.Start
but it fails.
Question : How do I execute the same command from the PHP code but from inside a C# code ?