
Recherche avancée
Autres articles (79)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, 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 (...) -
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 (...) -
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 (9742)
-
Details about the types of the filtered frame used in FFmpeg
17 décembre 2015, par sunzhidaI am new in multimedia analysis.
I am trying to extract key frames from .mp4 and .flv format videos by using FFmpeg. The problem is that I was confused by the parameters used in the command (Select only I-frames).
select='eq(pict_type\,I)'
The parameters are used to choose the types of filtered frame and It can assume one of the following values :
I P B S SI SP BI
After searching on Wikipedia, I have got some basic concepts on I, P, B frames but still cannot tell the difference among S, SI, SP and BI. How to decide which type of frame should I use in my command line ?
[Update]
I found some of the definitions of these terms in The H.264 Advanced Video Compression Standard, Second Edition.
- SI : Intra-coded slice used for switching between coded bitstreams
(H.264) - SP : Inter-coded slice used for switching between coded
bitstreams
- SI : Intra-coded slice used for switching between coded bitstreams
-
How to concatenate VP9-encoded video without re-encoding ?
1er juin 2023, par ProgrammingLlamaFor H264 files, I'm currently using the following approach :


- 

- First "prepare" the file for merging (I think unwrapping the byte stream from the overall encoded video ?) by using
ffmpeg -i file.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts file.ts
- Concat the files into the resulting video using
ffmpeg -i "concat:file1.ts|file2.ts" -c copy -bsf:a aac_adtstoasc out.mp4






Now I'm trying to do the same with VP9 encoded files. I sense some step similar to (1) above is necessary, but I can't seem to find details on how I should do this. I'm currently just trying to concatenate the files like this :


ffmpeg -i "concat:file1.webm|file2.webm" -c copy -bsf:v vp9_superframe out.webm`



While this does merge the files (the resulting file size is approximately the same as the sum of the sizes of the input file), it doesn't actually merge the videos in terms of playback. Only the first video in the concatenation is playable (and the duration of the video matches the first).


How is this done correctly with VP9 ?


- First "prepare" the file for merging (I think unwrapping the byte stream from the overall encoded video ?) by using
-
Embedding many small movies in page (gif vs mp4 vs webm vs ?)
25 mars 2017, par genekoganI am making a webpage which will contain around 20-25 small-resolution ( 56x56) and short-length ( 3 sec) movies which will be set to autoplay and loop, so they will be looping on the page at all times. They are mostly dispersed throughout the page, so cannot easily be merged into bigger movies.
I’m trying to decide on the right format to use, balancing filesize, quality, and processor overhead.
mp4 seems the best option in terms of quality and filesize, however embedding many small mp4s on the page felt to me slow and made my computer get hot. Despite the fact that if they were one mp4, it would be only around 300x240 — it seems there is a lot of CPU overhead if they are divided.
gif is lower quality and bigger filesize, but the CPU performance felt smoother. I can’t prove it though because I didn’t measure it — are gif’s known to be better performance than mp4 ?
I have not tried other formats (webm, avi, ogg, etc) but I am unsure of how supported all of these formats are by most browsers and I want the webpage to be viewable from multiple browsers/countries.
How can I determine the best format to use for these videos ? Is there a tool which can measure the CPU performance of my webpage so I can quantify the performance issues ?