
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (97)
-
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 (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (7464)
-
Command to get only one audio track in output specified by language code with ffmpeg
22 mai 2023, par killerlearnerFfmpeg Command to get video with only English audio


I tried running
ffmpeg -i input_video.ext -map 0:v -map 0:a:language=eng -c:v copy -c:a copy -map_metadata -1 -sn output.mp4

But the output file I got is 0 byte.
So can anyone tell me the write command.
I want to get video with only one language audio, I specify with code like eng, hin etc. With subtitles removed and x264 format !

-
ffmpeg c api for cutting video
13 janvier 2012, par user1148080first thing sorry for my bad english, i'm making an android app that need to get part of a video, the idea is i need a method that get input a video file, start-time, end-time then cutting video from star-time to end-time and output to a new file, i get ffmpeg for android from http://bambuser.com/opensource and able to compile it, integrate with JNI, but now i dont know which ffmpeg's api to use for do the thing a need, any help, example are much appreciated.
-
FFMPEG action on events
19 décembre 2022, par A. Sk.iam trying to make action on events in FFMPEG.


For example : ffmpeg -i http://domain/index.m3u8 -c copy -f segment -strftime 1 -segment_time 10 %Y-%m-%d-%H-%M-%S.mp4


FFMPEG take live stream, cut by slices and create files. I want to run a script do_with_file.sh after every slice created, without ffmpeg pausing.


Is there any option in ffmpeg to make it ?


Ofcource, i can take stdout from ffmpeg and looking for "segment" text :
ffmpeg ....mp4 | grep 'segment @' | do_with_file.sh


First of all, info line about "segment" showed in stdout, before file was created.
It is not working, if i want run ffmpeg in background.
And in my mind, it is not geek way :)


P.S. English is not my native language, sorry for mistakes.