
Recherche avancée
Autres articles (105)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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 (...) -
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 (12494)
-
Creating a m3u8 clip from another m3u8 file
14 janvier 2021, par Alan

I wanna create a m3u8 clip from another m3u8 file.
This is the command line I'm giving on terminal

ffmpeg -ss 6.2 -i test.m3u8 -y -t 45 -profile:v baseline -s 640x360 -level 3 -start_number 0 -hls_list_size 0 -f hls output_test.m3u8

It is giving me an output of a new m3u8 clip of 45s but nothing happens in the first 3-4 seconds.
Anything I'm missing ?need help



-
Using ffmpeg to convert an SEC file
29 septembre 2023, par annaI need to convert an SEC file into any video format that I can share and/or upload to Youtube. MP4, etc.



I'm a complete newbie at all things terminal. I've tried :



ffmpeg -i video.sec video.mp4



ffmpeg -i video.sec -bsf:v h264_mp4toannexb -c:v copy video.avi



ffmpeg -i video.sec -b 256k -vcodec h264 -acodec aac video.mp4



I don't understand what any of these mean, they're just examples I found online. However, whatever I try returns this error :



Invalid data found when processing input



Any thoughts ? Thanks !


-
FFmpeg Batch .mov > .gif conversion
26 juin 2022, par Bumblefoot89I am trying to batch convert a folder of .mov's into .gif's.


Input .mov's are 1920x1080 resolution and I would like to convert to 720x480 (to save file size). I have the following code, but not sure how to add the -vf scale=720 into this code :


for i in *.mov; do ffmpeg -ss 1 -i "$i" "${i%.*}.gif"; done



The above code works, just running it through terminal. Any help on adding the scale or any other optimizations to reduce file size would be greatly appreciated.


Thanks