
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (82)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
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 (...) -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
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 (...)
Sur d’autres sites (8922)
-
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 :)