
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (87)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (18358)
-
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
-
How can I optimize MP4 file encoding in openRTSP to the same level as FFmpeg ?
2 juillet 2018, par Wolfgang KlenkI currently receive and store a RTSP stream from a camera with openRTSP with a command like this :
openRTSP -4 "rtsp://192.168.41.185/rtsp_tunnel?h26x=4&line=1&inst=2" > movie.mp4
I can do the same using FFmpeg :
ffmpeg -i "rtsp://192.168.41.185/rtsp_tunnel?h26x=4&line=1&inst=2" -vcodec copy movie.mp4
The video frames from the camera are 1280x720 (H.264) at around 30 fps and have a milliseconds timestamp stamped in. When I view the movie.mp4 created by ffmpeg it looks pretty nice, the seconds stamped into the video stream seem rather accurate. On the contrary, if I view the movie.mp4 created by openRTSP, the seconds in the video timestamp last definitively longer than the ones in reality. So one second on video could last two seconds in reality. I made several tests, and it is not an issue of network performance or of handling the messages received from the camera. The reason seems to be the part where the messages are encoded into this MP4 container.
Is FFmpeg so much faster doing this than openRTSP ?
Can I optimize the MP4 encoding in openRTSP somehow ?
-
osgmovie example crashes when playing flv with alpha channel
30 novembre 2013, par user1912093I m trying to play flv file with alpha channel
osgmovie -e ffmpeg "The_wolf.flv"
it shows message "transparent movie, enabling movie"
then it freezes the osgmovie application without showing anything
Can anybody tell me what is going wrong ?
osgmovie behave like this for every flv file with alpha channel
Thank you !
Cheers,
mossin