
Recherche avancée
Autres articles (32)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
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 -
MediaSPIP Player : les contrôles
26 mai 2010, parLes contrôles à la souris du lecteur
En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)
Sur d’autres sites (4768)
-
FFmpeg/X264 : Split video mid-GOP without reencoding entire stream
10 juillet 2012, par yoda_alexI've got an H264 video (Stored in an MP4 file). Each GOP is approx 10s long. I want to trim the first couple of seconds off the video, which means I need to split the first GOP. Is there a way to do this without re-encoding the entire video ?
I've got FFmpeg and x264 available. I'm happy to use either the FFmpeg command line, or my own program linked against ffmpeg of x264 libraries.
Thanks in advance !
-
ffmpeg - virtually split source file for analyse
31 mai 2019, par user6698332The goal is to split file on segments by theirs qty or duration
to get info for each segment separately,
avoiding of physical splitting the file or
use multiple of command lines for each segment of manually calculated lentgh.I tried the following :
ffmpeg.exe -i test.wav -f segment -segment_time 30 -af volumedetect -f null - > test_wav.log 2>&1
but unsuccessfull :(
Is there a way to reach it by specific combination of commands and filters ?
Thank you.
. -
FFmpeg.AutoGen example of how to split audio file
7 mars 2018, par SvenI want to use the FFmpeg.AutoGen project from here : https://github.com/Ruslan-B/FFmpeg.AutoGen
I’m not familiar with the ffmpeg API, so I wanted to get an example of how to split an audio file into little files, for example the audio file is about 2 hours long (can be mp3,ogg,wav,etc.) and I want to split it into several little files of x minutes. The splitting should be done on the main audio file with timestamps from and to, for example from = 00:25:00 (meaning 25 minutes), to = 00:31:12 (meaning 31 minutes, 12 seconds) and the output should be the section from the main audio file, the result is 00:06:12 (meaning 6 minutes, 12 seconds) long.
How can this task be achieved with the project ? Also a C example can help me, I would try to convert it into the framework.
Thanks for your responses.