
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (20)
-
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (4423)
-
video orientation detection in bash
30 décembre 2020, par MiatiI need to detect whether videos are recorded in portrait or landscape mode, then transpose those into the correct orientation, in a scripted fashion.



if [ "$v_orient" == "landscape" ]
 then
 ffmpeg -i file.mp4 -vf "transpose=1" file.ogv
 else 
 ffmpeg -i file.mp4 file.ogv
fi




I've looked in ffmpeg online documentation and googled around,



I've attempted exiftool



exiftool -Rotation -Rotate file.mp4




However, this outputs Rotate : 90 for both landscape & portrait videos I have.





How can I detect the video orientation in bash ?


-
video orientation detection in bash
30 décembre 2014, par MiatiI need to detect whether videos are recorded in portrait or landscape mode, then transpose those into the correct orientation, in a scripted fashion.
if [ "$v_orient" == "landscape" ]
then
ffmpeg -i file.mp4 -vf "transpose=1" file.ogv
else
ffmpeg -i file.mp4 file.ogv
fiI’ve looked in ffmpeg online documentation and googled around,
I’ve attempted exiftool
exiftool -Rotation -Rotate file.mp4
However, this outputs Rotate : 90 for both landscape & portrait videos I have.
How can I detect the video orientation in bash ?
-
Unable to overwrite ffmpeg metadata
11 décembre 2019, par underscoreI am having some issues overwriting the metadata on video files using FFmpeg that already has metadata added to it previously(previous metadata also added by FFmpeg).
So I am using
ffmpeg -i path/to/video file -i /path/to/metadata -map_metadata 1 -codec copy path/to/output file
to merge the metadata file with the video file but if the video file has already been through this command once the new metadata won’t stick, only the old ones remain. Is there a way of forcing the metadata to be overwritten by the new metadata file ?Most of what I have tried so far have only been making a metadata text file from scratch to see if there were some issues with the metadata I was extracting from the video file using
ffmpeg -i path/to/video file -f ffmetadata path/to/metadata
.
So far I haven’t been able to find a lot about this online other than variations on this command, however, I think that is mostly due to the fact that I am not entirely sure what keywords I should search for.Thanks for the read