Recherche avancée

Médias (2)

Mot : - Tags -/rotation

Autres articles (64)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • 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 ;

Sur d’autres sites (6044)

  • How to use the hardware acceleration for ffmepg on m1-max ?

    10 février 2023, par ThoughtfulHacking

    Since there aren't m1 builds available from ffmpeg.org, I had to compile my own. Obviously, I'd like to get the best possible performance.

    


      

    • Does ffmpeg use the "Hardware-accelerated H.264" on the m1 max ?
    • 


    • Is there anything I need to do, like compiler flags, to get it ?
    • 


    • Any switch at run time ?
    • 


    • How can I verify that it's being used ?
    • 


    


    To compile ffmpeg, I just did the basics :

    


    ./configure --prefix=/tmp/ff       --enable-gpl --enable-nonfree   --enable-libx264
make
make install


    


    For x264, I just did
./configure —prefix=/tmp/ff
make
make install

    


    to run :

    


    ffmpeg -i random.wmv -c:v libx264 -preset ultrafast  -c:a aac  output-ultra.mp4 


    


    Anything else I should be doing ?

    


  • PyAV Raw video to MJPEG or RTSP

    14 décembre 2020, par aris-t

    I figured I would ask this in parallel to my own searching as I am not that familiar with ffmpeg or PyAV.

    


    How might one go about reading raw video from a webcam, trans code it to either Mjpeg or RTSP and output it using PyAV ?

    


    I find plenty of examples of reading one file to another of the same format, reading RTSP and MJPEG to a file but no examples raw video to stream. My attempts at taking the raw video to file have also been unsuccessful resulting in data being written to the file yet the file is non readable and appears to have indexing issues.

    


    Any help is appreciated.

    


  • FFmpeg to get video snap [duplicate]

    22 février 2013, par alex

    Im trying to save an image from a video frame and save it as a jpeg.
    This function works for smaller video files, but if the video is over 10 minutes it won't save the jpeg image. An error comes up as before trans.

    public function VideoToJpeg($localVideoPath, $localOutImgPath)
    {
       $Name = dirname(__FILE__) . "/ffmpeg";
       $Str = "$Name -i \"$localVideoPath\" -an -ss 00:00:03 -an -r 1 -vframes 1 -y \"$localOutImgPath\"";

       exec($Str);
    }

    here is the error I got from ffmpeg

    [NULL @ 0370e760] Unable to find a suitable output format for 'path'
    : Invalid argument