Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (48)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Contribute to documentation

    13 avril 2011

    Documentation 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 (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (6870)

  • A/libc : Fatal signal 7 (SIGBUS)

    29 août 2020, par yejafot
    A/libc: Fatal signal 7 (SIGBUS), code 1, fault addr 0xb92df158 in tid 19864 


    


    App crashes when app launches. How to find which line throws this error in .cpp file inside android studio using this fault addr 0xb92df158 ?

    


    And this error not occurs everytime i select the video(small or large size video) from app but only sometimes it occurs. Is there anyway to debug the line inside .cpp file because i have so many null checks and error handling inside .cpp file. What i do is i select video from java and edit the video inside .cpp file and save back the output image inside sdcard using

    


    char buf[1024];
snprintf(buf, sizeof(buf), "%s-%d", "/storage/emulated/0/Download/frame.png", av_codec_ctx->frame_number);
pFile = fopen(buf, "wb");
fprintf(pFile, "P5\n%d %d\n%d\n", av_frame->width, av_frame->height, 255);
for (y = 0; y < av_frame->height; y++)
    fwrite(buf + y * av_frame->linesize[0], 1 , av_frame->width, pFile);


    


    .So while decoding or saving back as .png i think i get this sort of error.

    


  • FFMpeg HLS to MXF video codec copy non monotonically increasing dts issue

    22 juin 2023, par arlovande

    I am rewrapping an HLS stream as an mxf file. The HLS is 1080p59.94 10bit 4:2:2. The mxf is a video codec copy and an audio conversion to pcm. The stream has video timecode burn-in for me to watch the video frames. Here is the command

    


    ffmpeg -i "https://myinput/index.m3u8" -f segment -timecode "01:01:01:00" -segment_time 600 -reset_timestamps 1 -c:v copy output_%03d.mxf


    


    I get the following non-fatal error

    


    "Application provided invalid, non monotonically increasing dts to muxer in stream 1"


    


    The file is still created, however. In VLC the file plays correctly frame by frame. But in Adobe premiere when I play frame by frame I get video stuttering and I see the timecode burn in plays in a sequence like this... 3 frames ahead, then 2 frames back... so the frame sequence would be something like ;03 ;01 ;02 ;06 ;04 ;05 ;09 ;07 ;08

    


    It's almost like Premiere does not know how to order the frames back together but VLC does. Any thoughts on how I might change the command to reorder the dts monotonically ?

    


    When I wrap to a .ts file I don't get this issue in Premiere, but I need MXF because Premiere can play an MXF file as a growing file.

    


  • Android Camera2 API switching camera during recording

    24 décembre 2017, par Максим Ефимов

    I,m working with Camera2 API and in my app it’s important to switch the camera during recording. After each camera switch i save video fragment to disk, and after stopping the recording i merge videos into one usign "-f concat -safe 0 -i listPath -c copy finalPath" command of FFmpeg for Android. When i open a separate video fragment, it look correct, but when i open merged video, videos recorded on the back camera rotates 180 degrees. The problem is only in the merged video.

    In meta-tag of videos if video recorded on back camera, then "rotate" tag has 90 degrees, otherwise 270 degrees.

    As I understood when ffmpeg merges a videos it automatically rotates the video if it has different "rotate" tag in he’s metatags.

    How i can solve this problem ? Thank you in advance !

    P.S Also i tried to use MP4Parser Library for merging, but it has the same problems.
    P.P.S "-noautorotate" param for ffmpeg does not help me.