
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (99)
-
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 (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, 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 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 (...)
Sur d’autres sites (10733)
-
How to change part of a MKV video with another MKV video without re-encode and without changing audio file of the primary MKV file [closed]
10 octobre 2020, par MonsterMMORPGI have a lecture that I have recorded with using OBS studio and my microphone


But I want to replace certain part of that video with another video without re-encoding or touching the audio


The another video is also recorded with OBS studio with the same settings


If encoding is necessary I accept that as well


So what would be the appropriate
ffmpeg
command ?

Here example file definitions and durations to give more clear example


- 

-
a.mkv
: 77 minutes long

-
b.mkv
: same format and 2 minutes long

-
c.mkv
: I want to replace 00.23.00 - 00.25.00 part ofa.mkv
withb.mkv
without changing the audio file ofa.mkv










Is this possible without encoding or with re-encoding ?


So can you provide an example code with some definitions


How do we define starting position, the durations ? I found some examples on the Internet but they were not definitive enough


Answer to this question : https://superuser.com/questions/1591877/how-to-change-part-of-a-mkv-video-with-another-mkv-video-without-re-encode-and-w


-
-
avformat/aviobuf : discard part of the IO buffer in ffio_ensure_seekback if needed
28 septembre 2020, par Marton Balintavformat/aviobuf : discard part of the IO buffer in ffio_ensure_seekback if needed
Previously ffio_ensure_seekback never flushed the buffer, so successive
ffio_ensure_seekback calls were all respected. This could eventually cause
unlimited memory and CPU usage if a demuxer called ffio_ensure_seekback on all
it's read data.Most demuxers however only rely on being able to seek back till the position of
the last ffio_ensure_seekback call, therefore we change the semantics of
ffio_ensure_seekback so that a new call can invalidate seek guarantees of the
old. In order to support some level of "nested" ffio_ensure_seekback calls, we
document that the function only invalidates the old window (and potentially
discards the already read data from the IO buffer), if the newly requested
window does not fit into the old one.This way we limit the memory usage for ffio_ensure_seekback calls requesting
consecutive data windows.Signed-off-by : Marton Balint <cus@passwd.hu>
-
ffmpeg add watermark by output part count (watermark1.png for part 1, ...)
12 octobre 2020, par SteapyI have currently following code (not optimized yet !) :


converter.StartInfo.Arguments = @"-i video.mp4 -i watermark.png -filter_complex ""overlay = x = (main_w - overlay_w) / 2:y = (main_h - overlay_h) / 2"" output%03d.mp4";



This renders all my parts with the same "watermark.png" file as a watermark. But now i want to do something like this :


converter.StartInfo.Arguments = @"-i video.mp4 -i watermark%03d.png -filter_complex ""overlay = x = (main_w - overlay_w) / 2:y = (main_h - overlay_h) / 2"" output%03d.mp4";



"output000.mp4" has "watermark000.png" as a watermark,
"output001.mp4" has "watermark001.png" as a watermark,
"output002.mp4" has "watermark002.png" as a watermark, ...


I need it in only one line, as if i would type it in cmd and it should work in c# with UseShellExecute=false.


Any idea ?