Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (39)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • 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 (7090)

  • ffmpeg add metadata to ogg(opus) and embed image

    22 avril 2020, par Calendar

    like the title I want to add/change metadata to ogg(opus) files in one folder(one album/one artist).When i encode from wav/flac to opus i usually use

    



    for f in *.*; do ffmpeg -i "$f" -c:a libopus -b:a 510000 "${f%.*}.ogg"; done


    



    Then when i test one file with

    



    for f in *.*; do ffmpeg -i "$f" -c copy -metadata artist="artist name" -metadata album="album name" "${f%.*}.ogg"; done


    



    The result is the file reduced to just like 47kb(so i assumed that input and output name can't be same).

    



    So any efficient way to add/change metadata while retaining same name ?
And how to embed image to the ogg(opus) files ?I want to have cover art/image displayed when playing the files.

    


  • avutil/channel_layout : move and improve the comment about unknown orders

    25 septembre 2022, par James Almer
    avutil/channel_layout : move and improve the comment about unknown orders
    

    Don't place it as doxy specific for the order field, and generalize it both to
    also cover already defined orders and to not make it seem like the user is
    required to handle a layout they don't fully support or understand.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavutil/channel_layout.h
  • FFMPEG : titlecard for concatentaed video results in slow-mo

    3 septembre 2020, par epilitimus

    I have three clips I have extracted from a longer video. When I concatenate them together everything works fine, as would be expected since they all came from the same source.

    &#xA;

    Now I want to add a title card to the front of the merged video.

    &#xA;

    I generated an image in GIMP with the same dimensions as the video frames and then used ffmpeg to generate a 5 sec. video from it. When I concatenated it onto the front of the other three I run into problems.

    &#xA;

    The title card segment plays correctly and then the remaining segments are (both video and audio) in slow-mo. Also the titlecard runs longer than 5 sec and the main segment audio starts before the corresponding video.

    &#xA;

    I know the problem is with the generation of the title card clip but so far I can't figure out what I am missing. Obviously my bitrates are wrong but how do I get them to match up ?

    &#xA;

    what I have so far :

    &#xA;

    my generation script :

    &#xA;

    #!/bin/bash&#xA;&#xA;ffmpeg -y -ss 0:03:33 -t 0:0:33.5 -i seg1.vob -filter:a "volume=4" seg1.mp4&#xA;ffmpeg -y -ss 0:13:25.5 -t 0:0:57 -i seg1.vob -filter:a "volume=4" seg2.mp4&#xA;ffmpeg -y -ss 0:16:25.5 -t 0:0:43 -i seg1.vob -filter:a "volume=4" seg3.mp4&#xA;ffmpeg -y -ss 0:7:10 -t 0:0:10 -i seg1.vob -filter:a "volume=4" -vn -b:a 394k title.mp3&#xA;ffmpeg -y -loop 1 -i title.png -t 0:0:5 -i title.mp3 -c:a aac -b:a 394k -shortest title.mp4 &#xA;ffmpeg -y -f concat -safe 0 -i contents.txt -c copy merged.mp4 &#xA;

    &#xA;

    and contents.txt :

    &#xA;

    file &#x27;title.mp4&#x27;&#xA;file &#x27;seg1.mp4&#x27;&#xA;file &#x27;seg2.mp4&#x27;&#xA;file &#x27;seg3.mp4&#x27;&#xA;

    &#xA;

    ffprobe on seg1.mp4 :

    &#xA;

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from &#x27;seg1.mp4&#x27;:&#xA;  Metadata:&#xA;    major_brand     : isom&#xA;    minor_version   : 512&#xA;    compatible_brands: isomiso2mp41&#xA;    encoder         : Lavf58.20.100&#xA;  Duration: 00:00:33.52, start: 0.000000, bitrate: 677 kb/s&#xA;    Stream #0:0(und): Video: mpeg4 (Simple Profile) (mp4v / 0x7634706D), yuv420p, 720x480 [SAR 32:27 DAR 16:9], 275 kb/s, 29.97 fps, 29.97 tbr, 30k tbn, 30k tbc (default)&#xA;    Metadata:&#xA;      handler_name    : VideoHandler&#xA;    Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, 6 channels, fltp, 394 kb/s (default)&#xA;    Metadata:&#xA;      handler_name    : SoundHandler&#xA;

    &#xA;

    and for title.mp4 :

    &#xA;

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from &#x27;title.mp4&#x27;:&#xA;  Metadata:&#xA;    major_brand     : isom&#xA;    minor_version   : 512&#xA;    compatible_brands: isomiso2mp41&#xA;    encoder         : Lavf58.20.100&#xA;  Duration: 00:00:05.02, start: 0.000000, bitrate: 1290 kb/s&#xA;    Stream #0:0(und): Video: mpeg4 (Simple Profile) (mp4v / 0x7634706D), yuv420p, 720x480 [SAR 191:194 DAR 573:388], 898 kb/s, 25 fps, 25 tbr, 12800 tbn, 25 tbc (default)&#xA;    Metadata:&#xA;      handler_name    : VideoHandler&#xA;    Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 389 kb/s (default)&#xA;    Metadata:&#xA;      handler_name    : SoundHandler&#xA;

    &#xA;