Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (104)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (11224)

  • avformat/avlanguage : Remove long disabled av_convert_lang_to

    25 février 2021, par Andreas Rheinhardt
    avformat/avlanguage : Remove long disabled av_convert_lang_to
    

    1582e306a47977b09fddb029b999f99eb03cd485 scheduled it for removal with
    libavformat major version 58, but it was never removed.

    Reviewed-by : Paul B Mahol <onemda@gmail.com
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/avlanguage.c
    • [DH] libavformat/avlanguage.h
  • How to generate a video by looping an image and then concat with another very long video without re-encoding using ffmpeg ?

    23 mars 2021, par Linghao Chen

    I have an image and a very long video (1.5h).&#xA;Now I want to generate a heading video about 5 seconds by looping the image, and then concatenate it with the long video. Since the video is long, I don't want to re-encode the videos.&#xA;I have tried to generate the heading video using

    &#xA;

    ffmpeg -loop 1 -i image.png -c:v libx264 -t 5 -pix_fmt yuv420p head.mp4&#xA;

    &#xA;

    and then

    &#xA;

    ffmpeg -f concat -i list.txt -c:v copy concat.mp4&#xA;

    &#xA;

    where the list.txt contains

    &#xA;

    file head.mp4&#xA;file longvideo.mp4&#xA;

    &#xA;

    I have tried these operations on two machines.&#xA;On one machine, the concatenated video has no audio. Moreover, it stucks at 5-10 seconds and directly jump to 11s.&#xA;On the other machine, the video and audio are not synchronized.

    &#xA;

    To provide more information, I have checked the codecs of the two videos by

    &#xA;

    ffprobe -v error -select_streams v:0 -show_entries stream=codec_name \&#xA;  -of default=noprint_wrappers=1:nokey=1 xxxxx.mp4&#xA;

    &#xA;

    Both of them are h264.

    &#xA;

    My question is, how to generate it correctly with ffmpeg ? If it is hard using ffmpeg, is there any method to do it fast ? As far as I know, Adobe Premiere and Final Cut Pro do not export as fast as I expect because they re-encode the videos.

    &#xA;

  • FFmpeg reverse long audio hang randomly in Android

    23 mars 2021, par Michael

    I am writing an Android APP, underneath I simply use FFmpeg command to reverse the audio.

    &#xA;

    The command is simple like :ffmpeg -loglevel debug -debug_ts -i /sdcard/.m4a -af areverse /sdcard/longaudio.aac

    &#xA;

    If the audio is short, everything works fine, but if the audio longer than 10 mins, the thread will hang(sleep) randomly at some places. The log shows input processing stop in middle at some pkt_pts, every time stop at different ptk_pts. The whole app will therefore hang in there.

    &#xA;

    If I simply do conversion "ffmpeg -loglevel debug -debug_ts -i /sdcard/.m4a -codec:a aac /sdcard/longaudio.aac" it will work.

    &#xA;

    Some debug steps I did :

    &#xA;

      &#xA;
    1. The memory and cpu usage is normal, it seems the ffmpeg just suddenly decide to take a rest during reverse the long audio :(

      &#xA;

    2. &#xA;

    3. the IO shouldn't be fulled, I commented out the logs still not ok.

      &#xA;

    4. &#xA;

    5. I see a lot "cur_dts is invalid (this is harmless if it occurs once at the start per stream)", but it also showed in normal cases.

      &#xA;

    6. &#xA;

    &#xA;

    I know the description is kind of ambiguous, but I am so desperate. Anything I don't know about the audio reverse is welcome.

    &#xA;