Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (34)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (5297)

  • FFMPEG via PHP - no thumbnail or log output generated

    10 octobre 2018, par Utkanos

    I’m trying to get my head around command line syntax in the form of FFMPEG via PHP.

    I’ve successfully installed it and I can use it fine, until I try to :

    • run background tasks
    • generate output to a log

    This code attempts to create a thumbnail from a video. And it does, if I make it synchrnous, i.e. remove everything from onwards code>....

    shell_exec($i = 'ffmpeg -y -i '.$fp.' -ss '.$secs.' -vframes 1 '.$dirs_path.'/thumb.png  null >/dev/null 2>/ffmpeg.txt &');

    I’ve derived the background part of this command from this page on the official FFMPEG site.

    ($secs is an integer denoting a seconds point within the video duration, and $fp is the save path of the video. Both are valid.)

    So the thumb doesn’t get generated, and there’s no ffmpeg.txt created, either in the place where the script runs, or in the server root or anything. I may be looking in the wrong place... I’m unsure what all this is relative to.

    Any help appreciated.

  • Transcoding ERROR : jellyfin-ffmpeg/lib/dri/iHD_drv_video.so init failed

    24 mars 2023, par Souleimen BENTRAIFA

    Here is my problem, I switched from Jellyfin Win10 to Jellyfin via OMV6 Portainers (official images).
I have I7-2600S (VAAPI)

    


    Except that the transcoding doesn't work anymore, in the Jellyfin logs I have the following error message :

    


    [h264_vaapi @ 0x557ec1743400] No usable encoding entrypoint found for profile VAProfileH264High (7).
Error initializing output stream 0:0 -- Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height


    


    In the attachment you will find information after the "vainfo" we have the following error

    


    screenshot vainfo command here

    


    libva error: /usr/lib/jellyfin-ffmpeg/lib/dri/iHD_drv_video.so init failed


    


    If anyone has a clue, let me know

    


    NOTE : In Windows 10 i have no problem to transcoding in any format

    


  • writing custom codecs for android using FFmpeg

    22 mai 2014, par Aditya Kumar Praharaj

    I am doing a video compression project for Android and I am thinking of implementing it by designing a new video codec (by scratch , I have designed the algorithm) . I have already read the basics of video compression , related relevant algorithms and codec basics . I have also found that FFmpeg may serve as a quite good solution on Android.

    Now my questions come :

    1. How to write a new video codec as in FFmpeg ? I am still a beginner at writing codecs , but
      how do I start ? I have a rough idea that that you have to write at least a demuxer first and then the specific encoder and decoder etc . (Asking for references here please.)

    2. Since my codec deosn’t simply adjust video properties like fps , resolution , bit-rate etc.
      Is reading the MediaCodec API and MediaPlayer API in official Android SDK enough for writing new codecs ? (Because last time I saw it had only support for MPEG-4 SP , H.263 and H.264 . I was unable to find if you could directly write your own classes and functions).

    Thanks .