
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (34)
-
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 (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...) -
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 (...)
Sur d’autres sites (6252)
-
How to Convert MP4 to HLS with Multiple Audio and Multiple Video Quality in Python/Django ?
8 août 2021, par Sanjay SikdarI have tried with ffmpeg library and I can convert videos mp4 to hls with multiple quality but multiple audio is not working. > [Commands Excuting from Terminal]


And with subprocess library calling
subprocess.call
. > [ Want to know is this the right way ? to do with Django ? ]

-
How to send ctrl-c to stop ffmpeg
30 juillet 2014, par Anna SAELEEI have written a small function like this :
def test():
command = "ffmpeg -f mpegts -i udp://224.6.207.111:1234?multicast=1 -acodec copy -vcodec copy -sameq ff-output.ts"
os.system(command)
self.myTimer = Timer(10, "myTimer")
self.myTimer.start()
os.system(signal.SIGINT)
self.myTimer.stop()When i run
test()
in python in my terminal, ffmpeg always continues without closing.
Does someone know how to stop it ?Thank you for all comment ;D
I have find that we can use -t option for ffmpeg :) -
FFMPEG text file [migrated]
23 décembre 2012, par user872387I am giving the input file in the command line like this :
ffmpeg -i catch.flv.
The information about the file such as resolution, frame rate, bit rate etc is displayed in the terminal. I want this information to be stored as a (.txt) file. I have tried
ffmpeg -i catch.flv > catch.txt
. The .txt file was created successfully but the information is not stored in it. Could someone please help ?