
Recherche avancée
Autres articles (59)
-
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté. -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
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
Sur d’autres sites (10971)
-
How to add more codec support in FFmpeg library used with Android ?
2 janvier 2013, par AB1209I want to use ffmpeg library in my Android app to play .ts video file format.I am trying to run sample app given at GitHub Appunite.
So far I have managed to compile ffmpeg library & build .so files.I am working on Ubuntu 10.10 & using NDK r8.
Sample app works fine & plays file formats like .mp4 & .3gp but it doesn't play .FLV & .ts file (which is my requirement).
Whenever I try to play .ts or .FLV files it says "Could not open stream"
In Logcat it shows
E/player.c(28005): player_set_data_source Could not open video file: file:///mnt/sdcard/football.ts (-1094995529: Invalid data found when processing input)
I am trying this for weeks.So far I have not got any way. Please help
Thanks
-
ffmpeg conversion for apple tv
24 janvier 2013, par SamI have one particular movie file that is giving me grief while I am trying to convert my movie library to be able to be viewed on my Apple TV. I have been using iFlicks to convert all of my files and have only had one issue. The original of this particular movie file plays fine but after it has been converted the video freezes after a few minutes but the audio keeps playing. I tried using ffmpeg to convert the file but now the file is very choppy. The first time it is played the video will be choppy, the next time the audio will be choppy... but it plays fine in VLC for some reason. So I was thinking that maybe I have chosen the wrong codecs to suit Quicktime/Apple TV. Below is the command I used for ffmpeg. Have I chosen the right codecs and actually written the command correctly ? (I haven't really used ffmpeg before...)
ffmpeg -i input.avi -vcodec libx264 -acodec libfaac output.m4v
-
FFMPEG (windows7) can't get the output video to show more than 3 out of 10 jpgs
26 octobre 2015, par BrooksI have 10 jpg files (image0.jpg, image1.jpg, image2.jpg ... image9.jpg) and one .mp3 and I’m trying to create a video but I can’t get it to show more than the first 3 images in the output.
I played with the output
-r
option and for example if I change it to30
it shows all of them but very fast so the whole video plays for under a second.This is my code :
ffmpeg -i image%d.jpg -i audio.mp3 -r 1 -c:v libx264 -tune stillimage -c:a aac -strict experimental -b:a 192k -r 1/5 -pix_fmt yuv420p -shortest out.mp4
What am I doing wrong ?