
Recherche avancée
Autres articles (86)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (11995)
-
ffmpeg is throwing an error unable to find the output format, and then invalid argument unix ://1.sock
15 août 2022, par Sanil JainI'm listening to a stream of data using UNIX socket and converting that stream of data into hls.


the ffmpeg command that i used is :


ffmpeg -listen -i unix://1.sock -ar 16000 -ac 1 -c:a aac -hls_time 1 -f hls -hls_playlist_type event playlist.m3u8


Unable to find a suitable output format for 'unix://1.sock'
unix://1.sock: Invalid argument



-
FFMPEG | Make ts and multiple audio tracks aac files
6 septembre 2022, par F1TV MEGAI have mp4 file with 1 video and 2 audio tracks. And I want to make m3u8 playlist with changable audio tracks. I have this command :


ffmpeg -i "Video.mp4" -codec: copy -start_number 0 -hls_time 9 -hls_list_size 0 -f hls "index_Video_.m3u8"



But this has to be done saperately with every track and also it gets out of sync pretty much.


Just to make sure : Make ts and aac files for every track in file and also to create seperate and main m3u8 files.


If it's not possible I'm happy to hear alternatives. Also if need I can add more details.


Thank you !


-
How can I specify domain when downloading m3u8 file in ffmpeg ?
14 septembre 2022, par UmbrienI have
.m3u8
file and I am trying to download it like this :

ffmpeg -i file.m3u8 -c copy -bsf:a aac_adtstoasc output.mp4


It gives me errors about downloading it's parts.
I think it's due to the fact that playlist contains partial path to
.ts
fragments inside without domain in it since this command works fine if i'm specifying URL instead of input file name.

However, I'm using ffmpeg.wasm, which don't have http(s) download support as for now.


I guess maybe I could somehow specify initial domain for m3u8 file's parts so ffmpeg will know from where to download.