
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (107)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (11882)
-
How to QUICKLY batch scan video files to check for integrity (corrupt / valid)
9 juillet 2024, par nhershyThis question has been asked several times on this forum, with the accepted answer using ffmpeg to assess the integrity of the file with these example commands :


# scan a single file
ffmpeg.exe -v error -i C:\to\path\file.avi -f null - >error.log 2>&1

# batch scan
find C:\to\path\ -name "*.mp4" -exec sh -c "ffmpeg -v error -i '{}' -map 0:1 -f null - 2>'{}.log'" \;



The Problem :


The above commands work without issue, taking anywhere between 2-20 mins to assess a single video file. But when running the above batch command on a large number of video files (1000+) (assuming an average of 5 minutes per file), the process could take over a week to finish.


The Objective :


Looking for a faster solution to verify integrity of my files. Either to modify the
ffmpeg
command, or to use as a different binary entirely. Anything is accepted as long as I can run the new command in the terminal/bash. Would like to get the processing time down from a few days, to a few hours.

References :


https://superuser.com/questions/100288/how-can-i-check-the-integrity-of-a-video-file-avi-mpeg-mp4


Quickly check the integrity of video files inside a directory with ffmpeg


How can I tell if a video file is corrupted ? FFmpeg ?


https://gist.github.com/ridvanaltun/8880ab207e5edc92a58608d466095dec


Update


I never did find a "quick" way of scanning the video files. I just accepted that for the sake of thoroughness it will take some time. However, I made a GUI Python program that may benefit others :


https://github.com/nhershy/CorruptVideoFileInspector


-
Révision 19255 : Encore un cas particulier de Sqlite Manager de Firefox on dirait : lorsqu’on imp...
17 avril 2012, par marcimat -Il n’a pas de saut de ligne entre chaque description de champ, et du coup, la preg_match() de l’échappement des textes entre guillemets obtenait un résultat différent (par défaut preg_match s’arrête à chaque saut de ligne mais là il n’y en a pas). L’échappement ne créait qu’un élément dans cet exemple (...)
-
How to Write .ts file using AVAssetWriter in Swift Package Manager (Executable)
26 décembre 2022, par SaravanaI will able to record the screen in Mac-OS using AVAssetWriter with mp4 format. But that mp4 file is not playing the HLS player.


As per my research HLS player supports only .ts, so i tired to convert .mp4 to .ts file using ffmpeg, but that ffmpge framework is not working in Package.Swift Executable export. Is there any way to write .ts file format without using any framework or any other file type that would support HLS player.