
Recherche avancée
Médias (1)
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (67)
-
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 -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (9249)
-
Revision c17c440233 : Merge "Fairly basic integration of rectangular blocks in encoding RD loop." into
17 avril 2013, par Ronald S. BultjeMerge "Fairly basic integration of rectangular blocks in encoding RD loop." into experimental
-
Combining a few shifted streams with ffmpeg - result's expected duration is incorrect
27 octobre 2019, par galraI need to combine a few streams (videos + an audio), all shifted compare to each other and in different lengths, to a file with synchronized streams. Using a dummy case, I found out the following command will create a file with the video shifted by 10sec compare to the audio, playing in full length :
ffmpeg -i in.mp4 -itsoffset 10 -i in.mp4 -c copy -map 0:1 -map 1:0 -t out.mp4
if the -t flag is dismissed, the original length will be kept, and vlc would stop playing and effectively truncate the last 10sec of the video stream. With mkv however it won’t be truncated, and the presented video length increases by 10secs as expected. Also, ffplay won’t truncate the mp4, rather it will play it until the end, but once the original ending timestamp is reached, the timestamp "freezes" and A-V starts gaining (negative) increasing values. ffplay output will be as :
368.34 A-V: -6.124 fd= 14 aq= 0KB vq= 0KB sq= 0B f=0/0
also ffprobe will present the original duration :
Duration: 00:06:08.71, start: 0.000000, bitrate: 304 kb/s
where it should have been 00:06:18.71. I’m no expert, but I guess that there’s some metadata field in the mp4 container that tells the total duration. Is there a way to update it, or must I convert the files to mkv to avoid the wrong & confusing duration indication ?
-
How to use FFmpegMediaMetadataRetriever in Android Studio ?
20 juin 2016, par ShaileshI have used FFmpegMediaMetadataRetriever in "Eclipse" with fmmr.jar file it’s working fine but right now I have migrated my project in "Android Studio". I used following dependencies in my build.gradle file.
dependencies {
compile 'com.github.wseemann:FFmpegMediaMetadataRetriever:1.0.5'}
but I found the following error
03-30 16:07:10.030: E/AndroidRuntime(7763): java.lang.UnsatisfiedLinkError: dlopen failed: could not load library "libavutil.so.54" needed by "libswscale.so"; caused by library "libavutil.so.54" not found
03-30 16:07:10.030: E/AndroidRuntime(7763): at java.lang.Runtime.loadLibrary(Runtime.java:365)
03-30 16:07:10.030: E/AndroidRuntime(7763): at java.lang.System.loadLibrary(System.java:526)
03-30 16:07:10.030: E/AndroidRuntime(7763): at wseemann.media.FFmpegMediaMetadataRetriever.<clinit>(FFmpegMediaMetadataRetriever.java:124)
</clinit>please suggest me how to resolved this error.