Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (77)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Les notifications de la ferme

    1er décembre 2010, par

    Afin d’assurer une gestion correcte de la ferme, il est nécessaire de notifier plusieurs choses lors d’actions spécifiques à la fois à l’utilisateur mais également à l’ensemble des administrateurs de la ferme.
    Les notifications de changement de statut
    Lors d’un changement de statut d’une instance, l’ensemble des administrateurs de la ferme doivent être notifiés de cette modification ainsi que l’utilisateur administrateur de l’instance.
    À la demande d’un canal
    Passage au statut "publie"
    Passage au (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (11413)

  • avformat/utils : Move the reference to the packet list

    20 septembre 2019, par Andreas Rheinhardt
    avformat/utils : Move the reference to the packet list
    

    Up until now, ff_packet_list_put had a flaw : When it moved a packet to
    the list (meaning, when it ought to move the reference to the packet
    list instead of creating a new one via av_packet_ref), it did not reset
    the original packet, confusing the ownership of the data in the packet.
    This has been done because some callers of this function were not
    compatible with resetting the packet.

    This commit changes these callers and fixes this flaw. In order to
    indicate that the ownership of the packet has moved to the packet list,
    pointers to constant AVPackets are used whenever the target of the
    pointer might already be owned by the packet list.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/utils.c
  • FFmpeg metadata tags for YouTube 3D side-by-side movies

    17 février 2021, par Some1Else

    YouTube requires specific metadata tags for 3D Side-By-Side format movies. If the tag is not there then YouTube does not give the anaglyph playback options for the end user.

    &#xA;&#xA;

    Their "help" is here&#xA;https://support.google.com/youtube/answer/7278886?hl=en-GB

    &#xA;&#xA;

    I am trying to get FFmpeg to add the MP4 tag when building my movie.

    &#xA;&#xA;

    Code that works now for a series of PNG files into a MP4.

    &#xA;&#xA;

    "ffmpeg.exe" -framerate 60 -i "VID%05d.PNG" -c:v libx264 -preset:v veryslow -profile:v high -crf 15 -s 1280x720 -pix_fmt yuvj420p -an -y "OUTPUT.MP4"&#xA;

    &#xA;&#xA;

    But when I add the tag from the YouTube help page

    &#xA;&#xA;

    "ffmpeg.exe" -framerate 60 -i "VID%05d.PNG" -c:v libx264 -preset:v veryslow -profile:v high -crf 15 -s 1280x720 -pix_fmt yuvj420p -an -y -x264opts "frame-packing=3:frame-packing-interpret=1:frame-packing-quincunx=0:frame-packing-grid=0,0,0,0" "OUTPUT.MP4"&#xA;

    &#xA;&#xA;

    I get this error from FFmpeg

    &#xA;&#xA;

    [libx264 @ 0000000002a8c3a0] bad option &#x27;frame-packing-interpret&#x27;: &#x27;1&#x27;&#xA;

    &#xA;&#xA;

    This page (ignore the proselytising)

    &#xA;&#xA;

    http://www.pantherdynamics.yolasite.com/panther-dynamics-blog/uploading-3dsbs-content-to-youtube

    &#xA;&#xA;

    says you only need to use this tag

    &#xA;&#xA;

    -x264opts frame-packing=3&#xA;

    &#xA;&#xA;

    Using that does make FFmpeg finish correctly, but the SBS is still ignored by YouTube

    &#xA;&#xA;

    The YouTube engineer blog post here

    &#xA;&#xA;

    https://youtube-eng.googleblog.com/2011/09/getting-3d-content-on-youtube_8.html

    &#xA;&#xA;

    links to an older supposed 3D movie that also does not give 3D options any more.

    &#xA;&#xA;

    https://www.youtube.com/watch?v=ubRHSg5daMs

    &#xA;&#xA;

    So maybe even YouTube's own 3D movies are crippled ?

    &#xA;&#xA;

    What am I doing wrong ? Any FFmpeg gurus able to help ?

    &#xA;

  • python modules ffmpeg and ffprobe are installed but youtube-dl not able to find

    12 avril 2022, par Akshay Hiremath

    I'm using python 3.8 on MacOS Big Sur

    &#xA;

    I installed python module package for youtube-dl with

    &#xA;

    pip3 install -upgrade youtube-dl&#xA;

    &#xA;

    I wanted to do post processing on the content downloaded so I installed python packages ffprobe and ffmpeg.

    &#xA;

    pip3 install ffprobe&#xA;Collecting ffprobe&#xA;  Downloading https://files.pythonhosted.org/packages/95/9c/adf90d21108d41f611aa921defd2f2e56d3f92724e4b5aa41fae7a9972aa/ffprobe-0.5.zip&#xA;Installing collected packages: ffprobe&#xA;  Running setup.py install for ffprobe ... done&#xA;Successfully installed ffprobe-0.5&#xA;&#xA;pip3 install ffmpeg&#xA;Collecting ffmpeg&#xA;  Downloading https://files.pythonhosted.org/packages/f0/cc/3b7408b8ecf7c1d20ad480c3eaed7619857bf1054b690226e906fdf14258/ffmpeg-1.4.tar.gz&#xA;Installing collected packages: ffmpeg&#xA;  Running setup.py install for ffmpeg ... done&#xA;Successfully installed ffmpeg-1.4&#xA;

    &#xA;

    pip3 list &#xA;Package    Version   &#xA;---------- ----------&#xA;ffmpeg     1.4       &#xA;ffprobe    0.5           &#xA;youtube-dl 2021.12.17 &#xA;

    &#xA;

    Still it is complaining can't find ffprobe and ffmpeg :

    &#xA;

    youtube_dl.utils.DownloadError: ERROR: ffprobe/avprobe and ffmpeg/avconv not found. Please install one.&#xA;

    &#xA;

    I see both packages in /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/

    &#xA;

    Trying to figure out what am I doing wrong. Many other answers to similar questions on SFO are suggesting installing these packages in the OS using brew etc. but in my case "I want to do everything through python". So shouldn't just installing python modules be enough ?

    &#xA;