
Recherche avancée
Médias (2)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (97)
-
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 (...) -
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.
Sur d’autres sites (7187)
-
How to keep all parameters of input file while encoding to mxf using ffmpeg ?
4 avril 2019, par superuser123I’d like to encode an mxf file to another mxf file while keeping all parameters for both video and audio.
First, tried simple command :ffmpeg in.mxf out.mxf
But this changed the bitrate of video stream from 25M to 200K and some other parameters.
Besides, this removed one audio stream among two of input file.How can I deep all input parameters and streams of input file ?
PS : I cannot use -copy option because I should insert some image processing module while encoding.
Thanks in advance.
-
How to change the .ts file names in side the m3u8 file
13 août 2020, par Isuru BandaraRecently I am using FFmpeg for a project. I used FFmpeg to convert mp3 bitrates and other stuff. Those are working perfectly. But now I want to add mp3%2Fmusic%2F[outputN.ts] ?alt=media for every outputN.ts texts inside the m3u8 file. This my m3u8 file data structure,



#EXTM3U


#EXT-X-VERSION:3


#EXT-X-TARGETDURATION:2


#EXT-X-MEDIA-SEQUENCE:0


#EXTINF:2.005333,


'output000.ts'


#EXTINF:2.005333,


'output001.ts'



For Example, Now I want to apply mp3%2Fmusic%2F and ?alt=media for every text (output000.ts,output001.ts and so on) inside this m3u8 file using windows cmd. For instance,



#EXTINF:2.005333,


mp3%2Fmusic%2Foutput000.ts ?alt=media


#EXTINF:2.005333,


mp3%2Fmusic%2Foutput001.ts ?alt=media



 -
Detect video frame offset to sync videos the smart way
29 août 2018, par Fabien BillerWhen recording video, we know that it has for instance 60 fps. But do we also know, what the video offset is ? We do know that the time difference between frames is 1/60 s. But when did it start as an absolute value ? The problem comes into play when trying to sync two videos of the same scenery, for instance stereo with different cameras that were not frame-locked. My idea is to interpolate two - audio synced - 60 fps videos to for instance 180 fps to then change them to 60 fps again to hopefully have matching frames. This does not work, according to my test. A better solution would be to know the time difference between frames to interpolate based on difference, for instance using a deep learning algorithm.
How can ffmpeg help me here ?