
Recherche avancée
Autres articles (58)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 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 (6983)
-
Video to FLV code in php
18 janvier 2012, par freelanceinphpI am looking for efficient and easy to implement code which work for media file to flv conversion.
Please give me some referral sites or links.
-
How to encrypt video in code with FFmpeg ? [closed]
15 octobre 2023, par Vivian GreenI 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 OMiI 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 :)