
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (13)
-
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 (...) -
Qualité du média après traitement
21 juin 2013, parLe bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...) -
Qu’est ce qu’un masque de formulaire
13 juin 2013, parUn masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
Chaque formulaire de publication d’objet peut donc être personnalisé.
Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)
Sur d’autres sites (4489)
-
ffmpeg library is not working
3 avril 2017, par Salina BhattaraiI have got
FFmpeg
compiled (libffmpeg.so
) on Android. Now I have to build either an application like RockPlayer or use existing Android multimedia framework to invokeFFmpeg
along with video playing.Do you have steps / procedures / code / example on integrating
FFmpeg
on Android / StageFright ?Can you please guide me on how can I use this library for multimedia
playback ?I already did rendering, mixing.
-
adding text on video using ffmpeg drawtext working when running through commandprompt not working using java
9 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. -
-
Better solution for working with FFPlay in VB.net
7 mars 2014, par Don CullenI wanted to develop a simple visual tool that'd interface with FFPlay/FFMPEG to measure the loudness of any given audio. I'm doing this by having CMD invoke FFPlay/FFMPEG and logging the output the file and processing that file. I wanted to grab the data as FFPlay/FFMPEG output it directly, but it appears that I have to do it via CMD invocation, since invoking FFPlay directly in VB.net results in my not being able to grab the output.
The function I'm using to achieve this works for the most part (other than crashing at the end due to the file that's being logged to being in use).
The function can be seen here :
http://pastebin.com/CtUngvNqI'm sure I can eventually figure out why it isn't correctly killing the process so the file can be opened, but I thought I'd check with StackOverflow. I'm not quite familiar with VB.net, so any and all constructive criticisms are welcome. Any suggestions/ideas for improvements would also be welcome. If there's a better solution to grabbing the output as opposed to invoking CMD to output the data to a file, I'm open to it.
Thanks in advance for your assistance. If no assistance is possible, then don't sweat it, thanks anyway for reading and considering the matter !