
Recherche avancée
Médias (2)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (93)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (9465)
-
Recover corrupted mp4 from an app
9 janvier 2018, par user924We can easily fix corrupted mp4 file (for example if we were recording video, but it wasn’t stopped correctly) on Windows using next method
REM 1) any good mp4 file with the same resolution and bitrate to generate the header files:
recover_mp4.exe good.mp4 --analyze
REM 2) recover streams from the corrupted file, for example:
recover_mp4.exe bad.mp4 recovered.h264 recovered.aac
REM 3) join audio and video with ffmpeg:
ffmpeg.exe -r 30 -i recovered.h264 -i recovered.aac -bsf:a aac_adtstoasc -c:v copy -c:a copy recovered.mp4
REM delete temp files:
del *.h264
del *.aac
del *.hdrSo we need some similar good (not corrupted) mp4 file and next tools :
- recover_mp4 : http://slydiman.me/eng/mmedia/recover_mp4.htm
- FFmpeg : https://www.ffmpeg.org/
Is it possible to implement something similar in Android application ?
I know there is ffmpeg library available for android (https://github.com/WritingMinds/ffmpeg-android-java), it works okBut unfortunately recover_mp4 isn’t available for android
Mb there is already similar recover tool available for android ?
-
Why am I not able to store the HLS file in the path that is mounted to AWS S3 while converting using ffmpeg ? [closed]
17 juin 2024, par Arjitwhy am I not able to store HLS file to the path which is mounted to AWS S3 while converting a RTMP stream using FFMPEG ? It's work when the path is non-mounted.


Actually I m using NGINX-RTMP to run a rtmp server & I want it in the form of HLS thats why the RTMP block look like this :


rtmp{
 server{
 listen 1935;
 chunk_size 4096;
 # allow publish 127.0.0.1;
 allow publish all;
 # deny publish all;

 application live{
 live on;
 record off;

 hls on;
 hls_path /tmp/hls;
 hls_fragment 10s;
 hls_playlist_length 5m;
 }
 }
}



And I mounted that HLS path (in this case
/tmp/hls
)to a AWS S3 bucket using S3FS and its not storing only when the path mounted.what can be a good solution of this ?

Why this happen & what can be a good solution of this ?


-
Improve quality of ffmpeg created jpgs [duplicate]
3 janvier 2019, par PhilipThis question already has an answer here :
I’m using ffmpeg to extract thumbnails from videos.
Here’s the command I’m using :
ffmpeg -ss 00:23:00 -i video_720.mp4 -vcodec mjpeg -vframes 1 -an -f rawvideo screenshot.jpg
I would like to know how to specify the level of jpg compression or increase the quality of the created jpg ?