Recherche avancée

Médias (1)

Mot : - Tags -/publishing

Autres articles (32)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

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

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

Sur d’autres sites (6664)

  • fftools/ffprobe : Factor writing common side data types out

    1er juin, par Andreas Rheinhardt
    fftools/ffprobe : Factor writing common side data types out
    

    Reviewed-by : softworkz . <softworkz-at-hotmail.com@ffmpeg.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] fftools/ffprobe.c
  • How to divide my video horizontally using ffmpeg (without any other side-effects) ?

    1er février 2021, par Mayank Thapliyal

    I am processing my video(640 X 1280 dimensions). I want to divide my video horizontally into 2 separate videos(each video will now be 640 X 640 in dimensions),then combine them horizontally (video dimension will be now 1280 X 640)in a single video. I did the research on the internet and my issue was solved and not solved at the same time

    &#xA;

    I made a batch file and add these commands in it :-

    &#xA;

    ffmpeg -i input.mp4 -filter_complex "[0]crop=iw:ih/2:0:0[top];[0]crop=iw:ih/2:0:oh[bottom]" -map "[top]" top.mp4 -map "[bottom]" bottom.mp4&#xA;ffmpeg -i top.mp4 -i bottom.mp4 -filter_complex hstack output.mp4&#xA;

    &#xA;

    Yes,my task got solved but many other issues also came out of it :-

    &#xA;

    1.) My output video has NO audio in it. No idea why there is no audio in the end results

    &#xA;

    2.) My main video file (on which I am doing all this) is 258 MB in size. But the result was only 38 MB in size. No idea what is happening ? And even worse,I closely looked at the video,results were pretty same (only animation were not as smooth in output file as compared to input file)

    &#xA;

    3.) It is taking too much time(I know that computing takes some time but maybe there may be some way/sacrifice to make the process much quicker)

    &#xA;

    Thanks in advance for helping me

    &#xA;

  • How to extract a video snippet from a video file that is being written in by ffmpeg in realtime

    31 juillet 2020, par alex.b

    At the moment i am recording a LIVE stream video from youtube with youtube-dl (https://github.com/rg3/youtube-dl)

    &#xA;&#xA;

    The command i use for this :

    &#xA;&#xA;

    youtube-dl --id -f 92 https://www.youtube.com/watch?v=VYlQJbsVs48&#xA;

    &#xA;&#xA;

    92 is a format code that i got after executing a command to get the formats, that gave me this list :

    &#xA;&#xA;

    format code  extension  resolution note&#xA;140          m4a        audio only DASH audio  144k , m4a_dash container, aac  @128k (48000Hz)&#xA;141          m4a        audio only DASH audio  272k , m4a_dash container, aac  @256k (48000Hz)&#xA;160          mp4        256x144    DASH video  124k , 15fps, video only&#xA;133          mp4        426x240    DASH video  258k , 30fps, video only&#xA;134          mp4        640x360    DASH video  616k , 30fps, video only&#xA;135          mp4        854x480    DASH video 1116k , 30fps, video only&#xA;136          mp4        1280x720   DASH video 2216k , 30fps, video only&#xA;137          mp4        1920x1080  DASH video 4141k , 30fps, video only&#xA;151          mp4        72p        HLS&#xA;132          mp4        240p       HLS&#xA;92           mp4        240p       HLS&#xA;93           mp4        360p       HLS&#xA;94           mp4        480p       HLS&#xA;95           mp4        720p       HLS&#xA;96           mp4        1080p      HLS  (best)&#xA;

    &#xA;&#xA;

    This is creating a file called VYlQJbsVs48.mp4.part that gets bigger and bigger of course.

    &#xA;&#xA;

    Is there a way to extract a video snippet from that live stream or form the part file ? Or maybe there is a better way of doing this ?

    &#xA;&#xA;

    What i have noticed is that if i force quit iTerm2 while youtube-dl is running the .part file it creates wont contain any index information (something to do with an moov atom not being present in the mp4 file - which is the information about the number of frames and other things - metadata i think), so it makes me think i cannot extract from the file.

    &#xA;&#xA;

    Maybe if there would be a way that youtube-dl can write the index information at all times or maybe another way that i can record the live stream and get video snippets while its recording.

    &#xA;&#xA;

    I forgot to mention i am doing this on OSX Yosemite. I have FFMPEG installed with homebrew and youtoube-dl

    &#xA;&#xA;

    I am more than happy to try stuff on UBUNTU if there is a solution.

    &#xA;&#xA;

    Any help would be greatly appreciated.

    &#xA;&#xA;

    Thank you.

    &#xA;&#xA;

    Alex

    &#xA;