
Recherche avancée
Autres articles (93)
-
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 ;
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (12437)
-
avcodec/nvenc : disable s12m timestamps by default
29 mai 2021, par Timo Rothenpieler -
ffprobe failed to execute command
31 août 2020, par Ted BedI'm trying to get a frame from a video in a temp location but I get an error like this :


Uncaught Alchemy\BinaryDriver\Exception\ExecutionFailureException: ffprobe failed to execute command '/usr/bin/ffprobe' '/tmp/phpfwEh9u' 



Which is weird because I have another script that does the exact same thing but there is no error. Are there any reasons for why this could be happening ? Could there be any factors causing this in my script :


$sec = 1;
$movie = $filentmpname;
$thumbnail = 'thumbnail_uploads/' . $imfileid;

$ffmpeg = FFMpeg\FFMpeg::create();
$video = $ffmpeg->open($movie);
$frame = $video->frame(FFMpeg\Coordinate\TimeCode::fromSeconds($sec));
$frame->save($thumbnail);



-
Downloading an HLS stream : ONLY in sync when downloading with ffmpeg. Possible explanations ? [closed]
20 janvier 2024, par R.JEONI'm trying to download a livestream that is just a plain hls with no encryption.
I usually use streamlink, but this site I'm trying to use recently doesn't output a correct video/audio synced output when downloaded with streamlink/yt-dlp/nm3u8dl etc.


The only option that produces the correct output with the audio and video in sync is ffmpeg, but ffmpeg is very user-unfriendly and lacks functionality related to retries when connection is lost, and etc.


This is super weird cuz when I play the hls stream using VLC or any other livestream supported players, they are on sync. But what I do noticed is that when I play them on a player, the audio is mute for a second or two and then plays the audio correctly.


Can anyone possibly explain the cause of this situation and probably a fix ? I would love to use streamlink instead of ffmpeg.