
Recherche avancée
Autres articles (18)
-
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 (...) -
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)
Sur d’autres sites (4123)
-
Where can I find modern tutorials for libav, ffmpeg, etc ? [on hold]
19 décembre 2016, par MartyI want to make a quick program in C that will open a video, save each frame as a ppm, and dump motion vectors. All the tutorials I can find are from almost ten years ago and call deprecated or non-existent functions.
Are there any good online resources, websites, videos, or textbooks that cover a modern approach to doing these types of things ?
-
Check video files for integrity
19 octobre 2022, par kerner1000I have a library of video files. They get moved around, zipped, unzipped and stuff.


It happened, that some of the files get e.g., transferred/ extracted only partially. This problem usually shows up only when actually watching that video (i.e., the video stops prematurely, which is then really annoying).


Is there a way to batch-verify the integrity of a video library ?


I came up with the following, inspired by this question :


find . -regex ".*\.\(avi\|mkv\)" -exec ffmpeg -v error -i {} -f null - \;


The problem here is, that ffmpeg does not include the file name when printing the error messages which means I do not know which file in the batch is erroneous.


To make a long story short :


Is there a way to include the file name in the ffmpeg error messages ?


-
Convert .mp3 to .mov or .mp4 on iPhone SDK
2 août 2014, par SebastianHow are you guys ? I’m working on a little idea I had yesterday and I’m a little stuck with an mp3 conversion.
At this time, my app does the following :
- Receive an input text.
- The app generate a speech using an online API and download the generated .mp3 file to the app document’s folder.
Now I need to convert the .mp3 to .mov or .mp4 and then grab it to the camera roll, so the user can share the video on Facebook, Whatsapp, or wherever he wants.
Is there some easy and memory friendly way to convert from .mp3 to .mp4 without "writing a video" ?
Thank you !