Recherche avancée

Médias (0)

Mot : - Tags -/masques

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (19)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (4574)

  • Any solution to convert .yuv file to h264 file on Mac ?

    27 juin 2014, par piaChai

    I want to develop an app for mac which can record the current screen.But now I have trouble on not knowing how to encode .yuv file I got from CGImage.Somebody told me to encode with x264 or ffmpeg,I am not sure if these are the right choice for OS X development.If anyone has any experience in doing this,I really appreciate that you could tell me.Thanks.

  • FFmpeg opening key info file - could not write header for output file

    13 mars 2021, par Hoang Nam

    I want muxer mp4 to m3u8 with key.
I can do this when I put all files in same directory.

    


      

    • File 480.mp4.key
    • 


    • File video 480.mp4
    • 


    • File hls info have name : "480.mp4.keyinfo"
    • 


    


    When I run the command ffmpeg -i 480.mp4 -hls_time 10 -hls_key_info_file 480.mp4.keyinfo output.mp4.m3u8
everything runs normally.

    


    However, I meet a problem when I move file "480.mp4.key" and file "480.mp4.keyinfo" into another directory such as /usr/local/WowzaStreamingEngine/keys/auto_scan/testhh/2/123/480.mp4.keyinfo
I also change key directory in file keyinfo

    


    After that I run

    


    ffmpeg -i 480.mp4 -hls_time 10 -hls_key_info_file 480.mp4.keyinfo output.mp4.m3u8 ffmpeg -i output/testhh/2/123/480.mp4 -hls_time 10 -hls_key_info_file /usr/local/WowzaStreamingEngine/keys/auto_scan/testhh/2/123/480.mp4.keyinfo output/testhh/2/123/480.mp4.m3u8


    


    But I get an error :

    


     error opening key info file /usr/local/WowzaStreamingEngine/keys/auto_scan//testhh/2/123/output/testhh/2/123/480.mp4.keyinfo
Could not write header for output file #0 (incorrect codec parameters ?): No such file or directory
Error initializing output stream 0:0 -- 


    


  • Fetch an input file dynamically in a batch file to perform operations on it

    25 mars 2019, par Piyush — ,

    I have created a which uses to extract frames of a video to .jpg.

    ffmpeg -i sample.mp4  -r 5 E:\frames\createdFrames%%d.jpg

    It works completely fine and created the desired frames, however I want to give the sample video dynamically, i.e. pass it when the batch file is being executed.

    How can I pass the input file dynamically ?

    If possible, also discuss how to store the file dynamically, i.e pass the directory where I want to store the file when the batch is being executed.