AlexRayan
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Video Posts] autoplay video homepageHello lilygir,
Sorry for delay with reply.
I added an option to control audio levels in version 3.5 of the plugin.
You can now pass the options for autoplay and audio to your shortcode as follows:[wpvp_player src=http://example.com/path/to/video/file.mp4 splash=http://example.com/path/to/image/file.jpg width=500 height=281 autoplay=1 audio=0]in order to autoplay the video on page load and mute the audio.
Hope it helps.
Best regards,
AlexForum: Plugins
In reply to: [WP Video Posts] Encoded video not savingDear griff4594,
Sorry for delay with reply.
libx264 is the video codec, while libfaac is an audio. Both are needed in order to encode the video correctly. However, you have options when it comes to audio codecs: libfaac, libfdk_aac, aac, and libvo_aacenc.You could also try to use libmp3lame (which is an audio codec for mp3 files) if you don’t have any of the above.
Hope it helps.
Best regards,
AlexForum: Plugins
In reply to: [WP Video Posts] Video does not appear in sidebarI’m going to close this thread since the issue has been resolved.
In order for the videos to appear in the sidebar, the video posts have to have video data assigned to them (either through a shortcode referencing an uploaded video or through a shortcode referencing an external video).Best regards,
AlexForum: Plugins
In reply to: [WP Video Posts] FFMPEG not foundSince the issue has been resolved via emails I’m closing this topic.
Forum: Plugins
In reply to: [WP Video Posts] responsive video js playerHi Capulet,
In the future release we’re planning to include a responsive option for video js player. At the moment, you could add some css to achieve that. Here’s a good guide for that: http://coolestguidesontheplanet.com/videodrome/videojs/
Hope it helps.
Best regards,
AlexForum: Plugins
In reply to: [WP Video Posts] filename problemHi Capulet,
Actually, the plugin only renames a file in case of an already existing file on the server with the same name. For example, if you upload video.mov, after conversion is done the video file will be video.mp4. If after that you upload another video.mov, WordPress by default will rename the file to video1.mov since video.mov already exists. And WP Video Posts will then rename a new file to video1.mp4 since video.mp4 already exists.
Best regards,
AlexForum: Plugins
In reply to: [WP Video Posts] jw playerHi Capulet,
We will be integrating more player options in the future releases of the plugin. JW player is being considered among the others.
Best regards,
AlexForum: Plugins
In reply to: [WP Video Posts] CompatibilityHello Denis,
Yes, the plugin is compatible with 4.1.1 version of WP. I’ve tested it but didn’t have time to update the readme.txt file to reflect it.
Best regards,
AlexForum: Plugins
In reply to: [WP Video Posts] How to get ffmpeg to work on internal serverGlad I was able to help, Chris.
If you experience any other issues, feel free to shoot me an email.Regards,
AlexForum: Plugins
In reply to: [WP Video Posts] FFMPEG not foundHi Samfielder,
I modified the way ffmpeg detection is handled. Please update the plugin to version 3.4 and let me know if it fixes your issue.
Best regards,
AlexForum: Plugins
In reply to: [WP Video Posts] How to get ffmpeg to work on internal serverHi Chrisss,
How are you?
If wpvp_ffmpeg_exists is set to 1 it means it actually found it correctly.I modified the way ffmpeg detection is handled. Please update the plugin to version 3.4 and let me know if it fixes your issue.
Best regards,
AlexForum: Plugins
In reply to: [WP Video Posts] FFMPEG not foundHi Samfielder,
How are you? Could you please send me an email at alex @ alexiz.com with your site’s url and admin access so I could help you with the issue?
Best regards,
AlexHello 2ndCapricorn,
Looks like you have notice logging enabled on your server.
I added a fix for the above line of code in version 3.3.1. Please update the plugin and you should be good.Best regards,
AlexForum: Plugins
In reply to: [WP Video Posts] Categories stopped workingHi Sam,
How are you? Sorry for delay with reply.
The front end category filtering could have broke due to permalinks not being refreshed. Have you tried going under Settings -> Permalinks and refreshing (saving) the permalinks selected?Regarding the warning, it means that exec() function is disabled on your server. This function is needed for the plugin to work. Could you enable the functions in php.ini and let me know if the warning is gone?
Best regards,
AlexForum: Plugins
In reply to: [WP Video Posts] How to install ffmpeg after downloading the zip file?Hi Sailors,
How are you?
I haven’t tried installing FFMPEG on a Windows server, however, I found this guide on how to do it which seems to get the builds from the same site where you got it from:
Installing FFMPEG on Windows Server/Looks like you don’t need to execute the file, but rather point to it with the environment variables.
In order to convert files to mp4 format you would need to have the appropriate codecs for audio and video, for example, aac and libx264. When you compile FFMPEG, you need to make sure these are enabled:
--enable-libfdk-aac --enable-libx264The above libraries usually don’t come enabled by default, so you might need to add them to FFMPEG.
Regarding uploading videos over 5MB, you would need to increase file upload limit. You can either check php.ini settings for upload_max_filesize and post_max_size and increase the values accordingly, or you could also put the following into your .htaccess if your hosting allows for that:
php_value post_max_size 30M php_value upload_max_filesize 30MHope it helps.
Best regards,
Alex