
Recherche avancée
Médias (3)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (39)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (4516)
-
Can't call FFMPEG from CMD after installing chocolatey+ffmpeg on windows docker container
19 novembre 2022, par Adil Abdul RahmanI have a C# code that is dependent on FFMPEG via CMD/powershell. I am trying to run CLI ffmpeg via a C# code in a windows container with sdk:6.0-windowsservercore-ltsc2022. I found this guide(use 12ft.io to bypass paywall) that says to install chocolatey and then install ffmpeg through that like so :


USER ContainerAdministrator
EXPOSE 3389/tcp


RUN powershell.exe \
 Set-ExecutionPolicy Bypass -Scope Process -Force; \
 iwr -Uri 'https://community.chocolatey.org/install.ps1' -UseBasicParsing -OutFile $home/choco_install.ps1; \
 powershell $home/choco_install.ps1; \
 del $home/choco_install.ps1; \
 choco; \
 exit 0;
 
RUN powershell.exe \
 powershell choco install chocolatey-compatibility.extension -y --force; \
 powershell choco install chocolatey-core.extension -y --force; \
 powershell choco install ffmpeg-full -y --force; \
 ffmpeg; \
 exit 0;



( I am using this guide for C# dockerfile )


And my C# Code :


string command = $"/C ffmpeg -i \"{VideoUri}\" -vn -ac 1 {outputName}.mp3";
Process.Start("cmd.exe", command).WaitForExit();



But I am running into some trouble. My C# code throws this error :


'ffmpeg' is not recognized as an internal or external command, operable program or batch file.


I have tried calling FFMPEG from the dockerfile to test if it has installed but it just returns this :


Step 5/17 : RUN powershell.exe powershell choco install chocolatey-compatibility.extension -y --force; powershell choco install chocolatey-core.extension -y --force; powershell choco install ffmpeg-full -y --force; ffmpeg; exit 0;
 ---> Using cache
 ---> 83b2941d03e6



-
Android Get only Audio Stream of Online Video ?
19 avril 2014, par user1575044I am beginner in Android, basically I want to get only audio stream of an online streaming video, so that I don't have to download video just download audio part of video only as an mp3 file(saving lot of data if you only need it as an mp3 file). I researched and got to know it can be done maybe using ffmpeg. Can someone guide me in this, some tutorials links or sample code would be beneficial.
Thank You !!
-
aacenc_tns : rework TNS descision logic
17 octobre 2015, par Rostislav Pehlivanovaacenc_tns : rework TNS descision logic
Changes :
- strongly prefer dual filters to a single filter
- less strict about using 2 filters w.r.t. energy
- scrap the usage of threshold and spread, useless
- use odd-shaped windows to set the filter direction
- use 4 bits instead of 3 bits for short windows
- simplify and reduce the main loop to a single level
- add stricter regulations for short windowsAll of this now makes the TNS implementation operate
as good as it can and it definitely shows. The frequency
thresholds are now even better defined by looking at
the spectrals and the overall sound has been improved at
the price of just a few bits that are well worth it.