
Recherche avancée
Autres articles (71)
-
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. -
MediaSPIP Player : les contrôles
26 mai 2010, parLes contrôles à la souris du lecteur
En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...) -
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 (...)
Sur d’autres sites (9632)
-
Convert HEVC/H.265 video to a more widely supported format using fluent-ffmpeg in Node.js
21 juin 2021, par Daniel LoitertonMy app allows users to upload videos from their phones. However, the latest iPhone default format (HEVC / H.265) does not seem to be supported by Chrome and other browsers, so some users cannot stream the videos.


I'm already using fluent-ffmpeg on my Node.js backend to read metadata and extract thumbnails from the uploaded videos. How would I go about converting HEVC videos to something else ? What format/options would be appropriate for streaming to browsers ? Ideally I'd like to keep files fairly small, and I'm willing to sacrifice some quality to that end.


-
Converting mp3 and jpg to mp4 with h.264 and aac
18 octobre 2020, par mead650I have over 500 sermons in audio format (.mp3). I want to use FFMPEG because its free and I like the software.


I am trying to combine the .mp3s with a jpg (picture of my church) to create .mp4 for Youtube.


I know that YouTube usually does well with Audio format:aac or mp3 and Video format:AVC with h.264.


here is the code :


FOR %%a IN (audio/*.mp3) DO (
echo Converting: %%a
ffmpeg -i image/img.jpg -i "%%a" -c:v copy -c:a -vcodec libx264 -acodec aac -strict -2 videos/%%~na.mp4
)
echo Finished



I have the FFMPEG with a do loop, but I am getting this error, [NULL @ 000002574bea6b40] Unable to find a suitable output format for 'libx264'
libx264 : Invalid argument


I have the latest version.
Anytakers ?


-
Installing ffmpeg ios libraries armv7, armv7s, i386 and universal on xCode 6.1 Mac with 10.9
5 février 2015, par arashagaI have tried many of the solution such as "Installing ffmpeg ios libraries armv7, armv7s, i386 and universal on Mac with 10.8" to compile FFMPEG libraries on MAC for i386 an iphone but i constantly get and error. I guess it could b my xcode and clang version. I have already installed the latest command tools as well. Any help would be appreciated.