Recherche avancée

Médias (1)

Mot : - Tags -/punk

Autres articles (89)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (14290)

  • How to encrypt video in code with FFmpeg ? [closed]

    15 octobre 2023, par Vivian Green

    I want to use FFmpeg to push some video through UDP protrol,and now I am trying to encrypy my connection.

    


    I find a command to do this thing, it seems like this :

    


    ffmpeg -i input.mp4 -c copy -f mpegts -encryption_scheme aes-128-cbc -encryption_key 0123456789ABCDEF0123456789ABCDEF -y udp://remote_address:port


    


    However,when I trying to do the thing in Qt, I found it difficult to finish !
I got some code on the website,but it never works :

    


    // 设置加密参数
AVDictionary *options = nullptr;
av_dict_set(&options, "encryption_scheme", "aes-128-cbc", 0);
av_dict_set(&options, "encryption_key", "0123456789ABCDEF0123456789ABCDEF", 0);
// 写入文件头
avformat_write_header(outputFormatContext, &options);


    


    How can I finish encrypt with FFmpeg in the code just like what I done in the CMD ?

    


    Really thanks for your answer !

    


  • Please HELP Me with the followinf FFMpeg Code

    4 février 2016, par OMi

    I am using the following code to add plain text to videos. It works fine on localhost with EasyPHP server but I am not able to get the output on server (ffmpeg hosting). In addition, video conversion, video to audio everything is working fine. Please help me out. I need asap. Please give me your precious time.

    @exec('ffmpeg -y -i '.$source_file.' -vf drawtext="fontfile=font_omiA.ttf: \ text='.$watermark_text.': fontcolor=white@0.5: fontsize=20: \ x=(w-text_w)-3: y=(h-text_h-line_h)+10" '.$output_filename.'');

    Thank you, please help me :)

  • How to pause FFmpeg from C++ code ?

    13 mai 2015, par jAckOdE

    I’m writing a VisualC++ program which have code invoke ffmpeg.exe to convert video file.
    I wonder is it possible to pause/resume ffmpeg converting thread from C++ code ?

    LR.