
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (12)
-
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 (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Librairies et logiciels spécifiques aux médias
10 décembre 2010, parPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)
Sur d’autres sites (6419)
-
Android - merge videos taken with front and back cameras
3 mai 2023, par Raz LeshemI am having an orientation problem when merging videos taken with front and back cameras in portrait, recorded using Android CameraX.


This issue is explained here, but I am yet to find a working solution. I have tried multiple solutions, such as using mp4parser as suggested in the issue explanation, but the result is a that every alternate camera video is upside down.
I also tried using FFmpeg for android - mobile-ffmpeg.
Using ffmpeg Concat demuxer resulted in the same result as mp4parser did.


Concat demuxer command I used :
ffmpeg -f concat -safe 0 -i mylist.txt -c copy output.mp4


I also tried changing the rotation metadata of the videos to match before concatenating, similar to how it's done here, but that did not seem to have any effect on the end result.


Lastly, I used ffmpeg Concat filter. That solution took longer obviously because of the re-encoding of the video but it did fix the problem of the orientation of the videos, but the output video quality was poor.


Concat filter command :


ffmpeg -i front1.mp4 -i rear1.mp4 -i front2.mp4 \
-filter_complex "[0:v] [0:a] [1:v] [1:a] [2:v] [2:a] \
concat=n=3:v=1:a=1 [v] [a]" \
-map "[v]" -map "[a]" output.mp4



Has anyone found a solution on how to fix the orientation problem in android ? or maybe how can I keep the videos quality as much as possible when using the FFmpeg Concat filter to merge the videos ?


-
FFMPEG Conact Demuxer Re-Encoding When Trying to Merge MP4s
6 avril 2022, par Kyle SinkoI am trying to merge MP4 recordings straight out of OBS together into one MP4. From what I understand, I am using the concat demuxer to achieve this as it merges the files "extremely quickly" without re-encoding.


I am using the command


ffmpeg.exe -f concat -safe 0 -i "mylist.txt" -c copy video.mp4



as explained in this post




- 

- concat demuxer Use this method when you want to avoid a re-encode and your format does not support file-level concatenation (most files
used by general users do not support file-level concatenation).






The command runs successfully, but the process takes a very long time. I assume the videos are being re-encoded as this is what shows :




Output #0, mp4, to 'video.mp4' : Metadata :
encoder : Lavf58.51.100
Stream #0:0(und) : Video : h264 (High) (avc1 / 0x31637661), yuv420p(tv, bt709), 1920x2160 [SAR 1:1 DAR 8:9], q=2-31, 1




I'm unsure as to why the process is taking so long and want to know how I can merge the MP4 files into a single MP4 output file almost instantly.


-
How to add a watermark to the saved video with CameraX api in saving time
14 novembre 2022, par Nino SandI am using the CameraX api approach to record the videos and saving them as explained in the documents : https://developer.android.com/training/camerax/video-capture

I tried with ffmpeg-android-java but clearly it needs to process the saved video not adding to the saved frames in real time.

Now, I want to add a watermark to all saved videos in easy and not costly way and without the need to reprocess the video ?

Also, if there is no way, what the best and fastest approach to process the video to only add a watermark ?