
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 (11)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (2825)
-
Writing to a custom output with FFmpeg AVIOContex
3 septembre 2015, par Joe AllenSo I have been reading about using AVIO struct to be able to load from a custom source. Here are the posts I have been reading :
How can libavformat be used without using other libav libraries ?
Reading a file located in memory with libavformat
But in each of these posts talk about loading data from a different source.
What about if you want to write your converted data to a different source for instance ? How would you go about it ? Ideally, I want to avoid as much file I/O as possible. -
avformat/matroskadec : fix IGNIDX handling
9 février 2015, par wm4avformat/matroskadec : fix IGNIDX handling
Just because the user requested the seek index to be ignored, we can’t
just skip essential headers. At least tags are often located at the end
of the file, and the old code simply ignored the seekhead for all
elements, not just the cue index. Also, it looks like it used the index
even if IGNIDX was set if the cue index was located in the beginning of
the file.Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
-
process.waitFor() return 1 for drwatext using java but able to run in command prompt
10 mars 2014, par NikitaI am adding the text using to the video using ffmpeg drawtext. when running the command through command prompt it works fine but when running it using process builder its not working neither getting any exception.
Following is the java code
-
the input & ouput videopaths are coming as a parameters. ffmpegUrl
is the path of ffmpeg in the system.String names = "Nikita Sahu" ;
ProcessBuilder builder = new ProcessBuilder(ffmpegUrl," -y -i ",videoFile.getAbsolutePath()," -acodec libmp3lame -vcodec msmpeg4 -b:a 192k -b:v 1000k -ar 44100 -vf \"drawtext=text=",names,":expansion=normal:fontfile=",fontTypeFilePath,":y=h-line_h:x=h-(2*lh)-n:fontcolor=white:fontsize=24:box=0\" -an ",convertedVideoFile.getAbsolutePath());
I am not able to find out what i am doing wrong.
When printing the same on console & running through command prompt it works fine.
Any help will be appreciated. -