
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (66)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)
Sur d’autres sites (5701)
-
hls : Report the current media sequence
29 avril 2014, par Luca Barbato -
Adaptive bit rate streaming of mp4 of different gop size using media source api
25 décembre 2018, par wahab khurramI want the adaptive bitrate streaming of the mp4 video of different gop keyframe size.
I know there are couple of options for multi bitrate streaming i.e hls, dash etc
But I already uploaded the videos on the server each video have the 360p, 480p and 720p mp4 file and each video are having different keyframe intervals.
So the real challenge is to make the own multi bitrate mp4 media player using the media source api
I have brain storming all aspect.
We can only cut the h264 at keyframe
So my real challenge is to know the video each keyframe, the keyframe chunk duration, the offset duration and the offset byte position in the mp4 file.
So my question is how I can get these following using ffmpeg, ffprobe or any other software.
1- Keyframe chunk duration
2- Offset video duration
3- Offset byte position in video.
The following ffprobe command give the detailed info of the each keyframe, maybe this will help
ffprobe -i "1080p.mp4" -select_streams v -skip_frame nokey -show_frames
Thanks !
-
Concatenate dynamic media files on the fly using ffmpeg ?
24 février 2019, par DavidI have several ts files which I need to concatenate while some of the media files are still being converted, below is the scenario :
1. First .ts file ready and stored in named pipe
2. Second .ts file still being processed by ffmpeg and will take some time to finish.
3. Last .ts file ready and stored in named pipeWhat I would like to do now is to concatenate all these 3 files together (no re-encoding), in this case file(2) is still being converted. How can I achieve this ?
The purpose is to send to a client (HTTP) the output chunks from concatenation without waiting for the whole process to finish.
Thanks