
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (49)
-
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 -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
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 (...)
Sur d’autres sites (7658)
-
How do you use Ffmpeg to give unique title/track names (%02d) using -metadata when spliting a .mp3 file ? [closed]
11 août 2023, par Dave F(I'm using ffmpeg version 6.0-essentials_build-www.gyan.dev)


I've successfully split a .mp3 file & given the resulting files unique names using "XX_%02d.mp3" in the following command : XX_01, XX_02 etc.


How do I perform similar for the file's title or track ?
-metadata track="YY_%02d"
gives the file the literal track name of YY%02d. How can I get the -metadata command to accept the numerical coding ?

ffmpeg -i "input.mp3" -c copy -segment_time 500 -f segment -segment_start_number 1 -metadata title="YY_%02d" -metadata track="YY%02d" "XX_%02d.mp3"


-
How to save HLS stream to local disk in source code by ffmpeg ?
18 juillet 2021, par ZacharyThe HSL stream is divided into multiple ts files, now I want to save these files and the m3u8 file to local disk in source code by calling ffmpeg APIs.


Does ffmpeg support this function ? If so how to implement the function ? Otherwise, can anyone give me some suggestions about how to achieve this goal ?


-
How to save HLS stream to local disk in source code by ffmpeg ?
24 octobre 2016, par ZacharyThe HSL stream is divided into multiple ts files, now I want to save these files and the m3u8 file to local disk in source code by calling ffmpeg APIs.
Does ffmpeg support this function ?
If so how to implement the function ?
Otherwise can anyone give me some suggestions about how to achieve this goal ?
Many thanks.