
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (89)
-
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 -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...)
Sur d’autres sites (3910)
-
How to download/convert multiple streams to .ts with FFmpeg ? [on hold]
28 août 2016, par LeonardoHow to download multiple streams .m3u8 to .ts at one go.
I have a lot of link use .m3u8 streams
but I don’t know how make the download with FFmpeg. -
What's difference between using ffmpeg vs Native Hls to download M3U8 file ?
11 octobre 2017, par Mike RossI use
youtube-dl
to downloadM3U8
video (Not live streaming )
But when I download video usingFfmpeg
, if i interrupt download it’s not possible to resume downloads
When i use--hls-prefer-native
tag I’m able to resume downloads.
My question is what’s difference between the both ? And which is best between these two ?
Only difference I can find is that the video created usingNative Hls
has no thumbnail in Ubuntu File Manager !! -
How do I add environment variables to path in python ?
13 mai 2024, par JustThisWeebI made a python script to install FFmpeg and add it to path in Windows, but it seemed to have no effect at all. It doesn't give me any errors or anything. It literally just does nothing at all.


This was the code I used :


os.environ["Path"] += f"{os.getcwd()}/ffmpeg-7.0-essentials_build/bin"
os.environ.update()



and I tried several iterations of "path" including "PATH", "Path", "path" and none of them made a difference.
I also tried making a new variable :


new_environ = os.environ["Path"] + f"{os.getcwd()}/ffmpeg-7.0-essentials_build/bin"
os.environ["Path"] = new_environ
os.environ.update()



Which again made no difference.


I know there are other questions like that, but to be honest none of the ones I saw were helpful.