
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (53)
-
Les statuts des instances de mutualisation
13 mars 2010, parPour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...) -
Le plugin : Gestion de la mutualisation
2 mars 2010, parLe plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
Installation basique
On installe les fichiers de SPIP sur le serveur.
On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
< ?php (...) -
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site
Sur d’autres sites (8126)
-
How to convert all new mp4 to a directory using ffmpeg ?
11 août 2018, par Antonio MayconWhat bash script can use to accomplish this task through ffmpeg ?
I want my script to run as a loop and check if there are new mp4 videos in the directory.
Afterwards, move the new files to another folder, if the file doesn’t exist there yet.
If possible, I want to add a watermark to the video.
I have the code to add more files. I want to include it next to the script that does the conversion of the new files.
I created a bash file with the following data :
#! /bin/bash
srcExt=$1
destExt=$2
srcDir=$3
destDir=$4
opts=$5
for filename in "$srcDir"/*.$srcExt; do
basePath=${filename%.*}
baseName=${basePath##*/}
ffmpeg -i "$filename" $opts "$destDir"/"$baseName"."$destExt" -i logo.png -filter_complex overlay
done
echo "Conversion from ${srcExt} to ${destExt} complete!"Later i then run the file :
./ffmpeg-batch.sh mp4 mp4 /folder-source-file/ /folder-output-files/ '-ab 128k'
-
generate mpeg dash segments in specific directory using FFMPEG
30 novembre 2023, par hegazyI need to generate mpeg dash mpd file and m4s chunks files for streaming which is working perfectly.


The issue is the segments parts (.m4s files) generated in the app directory (ignoring the output .mpd file location) which restricted by the server, and any generated file should be generated only in specific location.


so is there a way to specify the segments location using ffmpeg ?


-
ffmpeg android, no such file or directory
7 janvier 2014, par G.T.I have a problem using ffmpeg on android which I can't figure out what's the problem. I build a static ffmpeg, which I use as command line in android. Now my problem is that my code works fine and all for quite a few device, but for some reason on some device(like Nivo) it just fails.
To be more precise it only fails when I use image as an input. My command has two -i input defined with a complex filter overlaying one on another. Now if I use two video it works like a charm. If I use an image as the second input then it fails saying :
/mnt/sdcard/Pictures/picture_1389105356533.png : No such file or directory
The file exists I checked it
And to make it even more interesting this only happens on some device like the bloody Nivo, generally it works great ( Samsung s2, samsung s4, nexus 7, nexus 4 etc)
Any idea ?