
Recherche avancée
Autres articles (32)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Les images
15 mai 2013
Sur d’autres sites (3316)
-
create extended context menu for ffmpeg
29 mai 2020, par Rami Magdithis should be the completed version that i'm unable to achieve






this is what i achieved






this is my convertingto.reg code



Windows Registry Editor Version 5.00

 ;command in context menu
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\*\shell\converting to]

"MUIVerb"="converting to"
"SubCommands"="rotate1;rotate2;rotate0;rotate3"

"SeparatorBefore"=""
"SeparatorAfter"=""

 ;rotate 90 clockwise
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\rotate1]
@="rotate 90 clockwise"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\rotate1\command]
@="\"C:\\ffmpeg\\rotate1.bat\"\"%1\""


 ;rotate 90 counterclockwise
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\rotate2]
@="rotate 90 counterclockwise"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\rotate2\command]
@="\"C:\\ffmpeg\\rotate2.bat\"\"%1\""


 ;rotate 90 counterclockwise & vertically flip
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\rotate0]
@="90 counterclockwise & vertically flip"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\rotate0\command]
@="\"C:\\ffmpeg\\rotate0.bat\"\"%1\""


 ;rotate 90 clockwise & vertically flip
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\rotate3]
@="rotate 90 clockwise & vertically flip"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\rotate3\command]
@="\"C:\\ffmpeg\\rotate3.bat\"\"%1\""




i understand this can be done using extendedsubcommandskey unfortunately i can't reproduce microsoft's notes https://docs.microsoft.com/en-us/windows/win32/shell/how-to-create-cascading-menus-with-the-extendedsubcommandskey-registry-entry


-
FATE : drop the last partial frame in the wmv8-drm test
1er décembre 2013, par Anton Khirnov -
Convert mp4 video to m3u8 format with C# ffmpack
26 février 2020, par İlyas ARUCAI can convert the file with the extension mp4 in my hand from the code line related to PowerShell to m3u8 format.
ffmpeg -i inputVideo.mp4 -profile:v baseline -level 3.0 -s 960x540 -start_number 0 -hls_time 10 -hls_list_size 0 -f hls outputVideo.m3u8
But I want to automate this process using C#. I did as written in the document on Microsoft’s site, but I could not add the relevant parameters. Has anyone done anything like this before ? or how can I follow a path.