
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (15)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (1860)
-
How to embed SCC closed caption file into a video file mov/mp4/mpg
5 août 2015, par Santhosh SI am trying to embed a closed caption (SCC) file into a video file and hitting on some problems.
Please suggest how to embed SCC closed caption file into a video file mov/mp4/mpg
Does FFMPEG support closed captions - scc files as input ?
Which open source tools can I use to do the above task ?
Thanks
-
List of file and the file size using cmd or media info/ffmpeg [duplicate]
22 juillet 2021, par firekid2018We can use to get the file name
dir /b>list.txt
using windows CMD. is there anyway we can get the file size info with name using cmd/mediainfo/ffmpeg or other app ? CMD can generate the file size but it's in "bytes" formate. i am looking for KB/MB/GB format.

logo.png 32KB
Header.png 160kb



-
mp4Parser : How to create a video file with background audio from an mp3 file
30 mai 2015, par Manu AntonyI am trying create an android app which merges a video and audio file using mp4Parser. I succeeded when I merge two mp4 file into a single file that displays the video of the first one and plays the audio of the second file.
But I couldn’t use an mp3 file as the audio source.
The below code returns exception when I try to create Movie object with an mp3 file. The same code works fine with m4a and mp4 files.
Movie audio;
try {
String audioFileName = Environment.getExternalStorageDirectory().toString()+"/music.mp3";
audio = new MovieCreator().build(audioFileName);
} catch (IOException e) {
e.printStackTrace();
return false;
} catch (NullPointerException e) {
e.printStackTrace();
return false;
}Is it possible to create Movie object from an mp3 file ?
Anyone please help me on this